.btn-auth img {
    transition: transform 0.3s ease;
}

.btn-auth:hover img {
    transform: translateX(4px);
}

.auth-section {
    min-height: 75vh;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dde1d9;
    width: 85%;
    margin: auto;
}

.auth-image img {
    height: 660px;
    object-fit: cover;
}

.auth-form {
    padding: 35px 40px;
}

.signup-badge {
    background: #ffe1b980;
    color: #f58d02;
    font-size: 15px;
    font-weight: 800;
    line-height: 22px;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.auth-form h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 5px;
    color: var(--select-color);
}

.auth-form p {
    font-size: 17px;
    color: #737373;
    font-weight: 400;
    line-height: 19px;
    width: 60%;
    margin-bottom: 20px !important;
    margin: auto;
}

.form-group {
    background: #f3f4f6;
    border: 1px solid #e4e6e8;
    height: 56px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
    border-radius: 8px;
}

.input-group-text {
    background: transparent;
    border: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.form-group {
    position: relative;
}

.signup-form {
    background: var(--bg-color);

    border-radius: 18px 0 0 18px;
}

.auth-section .form-control:focus {
    background-color: unset !important;
    border-color: unset !important;
    outline: unset !important;
    box-shadow: unset !important;
}

.btn-auth {
    background: #f58d02;
    color: #fff;
    border-radius: 30px;
    height: 48px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
}

.btn-auth:hover {
    background: #e07f00;
}

.auth-section input.form-control {
    background: none;
    border: none;
}

.login-text {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    line-height: 22px;
    color: #737373;
}

.user-form .form-group {
    display: flex;
    align-items: center;
}

.form-group img {
    width: 20px;
    height: 20px;
    object-fit: scale-down;
}

.login-text a {
    color: #f58d02;
    text-decoration: none;
    font-weight: 500;
}

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
    padding: 10px 0 25px 0;
}

/* Remember me */
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #555;
    font-size: 12px;
    line-height: 18px;
}

.remember-me input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Forgot password */
.forgot-link {
    color: #737373;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
    font-size: 12px;
    line-height: 18px;
}

.forgot-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}
@media (max-width: 1200px) {
    .auth-form h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .auth-form p {
        font-size: 15px;
        line-height: 18px;
        width: 75%;
    }

    .signup-badge {
        font-size: 14px;
        padding: 4px 12px;
    }

    .form-group {
        height: 52px;
        font-size: 15px;
    }

    .btn-auth {
        height: 46px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .auth-card {
        width: 95%;
    }

    .auth-form h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .auth-form p {
        font-size: 14px;
        width: 85%;
    }

    .signup-badge {
        font-size: 13px;
    }

    .form-group {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .auth-form {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .auth-section {
        min-height: auto;
        padding: 15px;
    }

    .auth-form {
        padding: 25px 18px;
    }

    .auth-form h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .auth-form p {
        font-size: 13px;
        line-height: 18px;
        width: 100%;
    }

    .signup-badge {
        font-size: 12px;
        padding: 3px 10px;
    }

    .form-group {
        height: 46px;
        font-size: 14px;
    }

    .form-group img {
        width: 18px;
        height: 18px;
    }

    .btn-auth {
        height: 44px;
        font-size: 14px;
    }

    .login-text {
        font-size: 12px;
    }
}
