/* =====================================
   GLOBAL RESET
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

/* =====================================
   BODY BACKGROUND
===================================== */
body {
    background: lightblue !important;
     padding-top: 80px; /* Adjust to match your header's height */
}

/* =====================================
   LOGIN SECTION
===================================== */
/*.pricing-section {
    background: lightblue !important;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}*/


.pricing-section {
    background: lightblue;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 15px 40px; /* Top Right/Left Bottom */
}

/* =====================================
   CONTAINER
===================================== */
.pricing-section .container {
    width: 100%;
}

.pricing-section .row {
    justify-content: center;
}

/* =====================================
   LOGIN BOX
===================================== */
.pricing-item {
    width: 100%;
    max-width: 420px;
    margin: auto;
    background: #ffffff !important;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =====================================
   TITLE
===================================== */
.pricing-item p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* =====================================
   LABELS
===================================== */
.pricing-item label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

/* =====================================
   INPUTS
===================================== */
.pricing-item input[type="text"],
.pricing-item input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
}

.pricing-item input:focus {
    border-color: #2575fc;
    outline: none;
}

/* =====================================
   LOGIN BUTTON
===================================== */
.auth-btn,
input.auth-btn,
a.auth-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: none;
    border-radius: 8px;
    background: #6a11cb !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover,
input.auth-btn:hover,
a.auth-btn:hover {
    background: #2575fc !important;
}

/* =====================================
   REGISTER TEXT
===================================== */
.register-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.register-text a {
    color: #2575fc;
    font-weight: bold;
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}

/* =====================================
   MESSAGE
===================================== */
.errorWrap,
.succWrap {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.errorWrap {
    color: red;
}

.succWrap {
    color: red;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 991px) {

    .pricing-item {
        max-width: 500px;
    }

}

@media (max-width: 768px) {

    .pricing-section {
        padding: 20px 15px;
    }

    .pricing-item {
        padding: 25px;
    }

}

@media (max-width: 480px) {

    .pricing-item {
        padding: 20px;
    }

    .pricing-item p {
        font-size: 20px;
    }

    .auth-btn {
        font-size: 15px;
    }

}