/* ==========================================================
   CONNECME AUTHENTICATION
========================================================== */

.auth-section {
    min-height: calc(100vh - 75px);
    padding: 50px 20px;
    background:
        linear-gradient(
            135deg,
            rgba(0, 102, 51, 0.08),
            rgba(255, 213, 79, 0.16)
        );
}


.auth-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}


.auth-introduction {
    margin-bottom: 25px;
    text-align: center;
}


.auth-label {
    margin-bottom: 8px;
    color: #006633;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.auth-introduction h1 {
    margin: 0 0 12px;
    color: #153322;
    font-size: clamp(2rem, 5vw, 2.8rem);
}


.auth-introduction p {
    margin: 0;
    color: #5f6f65;
    line-height: 1.7;
}


.auth-form {
    padding: 32px;
    border: 1px solid #e4ebe6;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 70, 35, 0.10);
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #243b2c;
    font-weight: 600;
}


.form-group input,
.form-group select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cbd8cf;
    border-radius: 10px;
    background: #ffffff;
    color: #1d3024;
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input:focus,
.form-group select:focus {
    border-color: #006633;
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.12);
}


.password-field {
    position: relative;
}


.password-field input {
    padding-right: 72px;
}


.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 7px 9px;
    border: 0;
    background: transparent;
    color: #006633;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(-50%);
}


.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0 22px;
    color: #536159;
    font-size: 0.92rem;
    line-height: 1.5;
}


.terms-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #006633;
}


.primary-button {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    border: 0;
    border-radius: 10px;
    background: #006633;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.primary-button:hover {
    background: #004d27;
    transform: translateY(-1px);
}


.primary-button:disabled {
    background: #879b8d;
    cursor: not-allowed;
    transform: none;
}


.form-message {
    display: none;
    margin-top: 18px;
    padding: 13px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.5;
}


.form-message.success {
    display: block;
    border: 1px solid #b6dec2;
    background: #eaf8ee;
    color: #17652f;
}


.form-message.error {
    display: block;
    border: 1px solid #efb8b8;
    background: #fff0f0;
    color: #a02222;
}


.auth-footer {
    margin: 22px 0 0;
    text-align: center;
    color: #5d6961;
}


.auth-footer a {
    color: #006633;
    font-weight: 700;
}


@media (max-width: 600px) {

    .auth-section {
        padding: 35px 14px;
    }


    .auth-form {
        padding: 24px 18px;
    }

}
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd8cf;
    border-radius: 10px;
    background: #ffffff;
    color: #1d3024;
    font: inherit;
    line-height: 1.6;
    resize: vertical;
    outline: none;
}


.form-group textarea:focus {
    border-color: #006633;
    box-shadow: 0 0 0 3px rgba(0, 102, 51, 0.12);
}


.information-box {
    margin: 10px 0 22px;
    padding: 18px;
    border-left: 5px solid #ffd54f;
    border-radius: 9px;
    background: #fff9df;
}


.information-box h3 {
    margin: 0 0 8px;
    color: #28422f;
}


.information-box p {
    margin: 6px 0;
    color: #5d675f;
    line-height: 1.6;
}