/* Auth */
.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - 160px);
}

.auth-container {
    width: 100%;
    max-width: 1180px;
    display: flex;
    align-items: center; /* flex-start → center */
    justify-content: space-between;
    box-shadow: none;
    border: none;
    background: transparent;
}

.auth-bg-side {
    width: 50%;
    min-height: 400px;
}

.auth-main {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding-left: 40px;
}

.auth-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.auth-heading-container {
    width: 100%;
    margin-bottom: 18px;
}

.auth-heading {
    color: #111111;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.auth-form .c-field {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #ededed;
    background: #fafafa;
    padding: 0 18px;
    font-size: 16px;
    box-shadow: none;
    margin-bottom: 14px;
}

.auth-form .c-field:focus {
    outline: none;
    border-color: #ffb21a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 178, 26, 0.12);
}

.password-field-wrapper {
    position: relative;
    margin-bottom: 14px;
    height: 52px;
}

.password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-submit-btn-label {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    background: #ffb21a;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
}

.auth-submit-btn-label:hover {
    background: #f3a900;
}

.recover-password-link {
    font-size: 15px;
    color: #2b2b2b;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}

.auth-form .c-response-message {
    min-height: 20px;
    margin-bottom: 4px;
}

@media only screen and (max-width: 900px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-bg-side {
        width: 100%;
        min-height: 320px;
    }

}

@media only screen and (max-width: 600px) {
    .auth {
        padding: 20px 40px; 
        min-height: 0;
        padding-top: 60px;
    }

    .auth-bg-side {
        display: none;
    }

    .auth-main {
        width: 100%; 
        padding: 30px 0;
    }

    .auth-heading {
        font-size: 40px;
        text-align: center;
    }
}

@media only screen and (max-width: 400px) {
    .auth-main {
        padding: 24px 0;
    }

    .auth-heading {
        font-size: 34px;
    }
}