body {
    font-family: "Poppins", sans-serif !important;
    background-color: #fff !important;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-dark {
    background: #0B0B0B !important;
    box-shadow: -1px 3px 13px 2px #2F2F2F1A !important;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background: white;
}

.auth-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.auth-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.auth-right {
    flex-direction: column;
    justify-content: center;
    border-radius: 18px;
    box-shadow: -1px 3px 13px 2px #2F2F2F1A;

}

.auth-header {
    margin-bottom: 30px;
}

.auth-title {
    font-weight: 700;
    font-size: 23px;
    color: #0B0B0B;
    line-height: unset !important;
    margin-bottom: 5px;
}

.auth-subtitle {
    font-weight: 400;
    font-size: 17px;
    color: #777777;
    font-size: 14px;
    margin-bottom: 0;
}

.highlight-text {
    color: #E2B524;
}

.social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

.social-icon {
    width: 18px;
    height: 18px;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 25%;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider-text {
    color: #777777;
    padding: 0 20px;
    font-size: 14px;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 400;
    font-size: 14px;
    color: #777777 !important;

}

.form-control {
    width: 100%;
    padding: 12px 16px !important;
    border: 1px solid #D2D2D2 !important;
    ;
    background: #FBFBFB !important;
    border-radius: 8px;
    font-size: 14px;
    border-radius: 13px !important;
    color: #0B0B0B;
    box-shadow: 0px 0px 4.51px 0px #0000001A !important;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.forgot-password {
    text-align: right;
    margin: 20px 0 30px 0;
}

.forgot-password a {
    font-weight: 400;
    color: #0B0B0B !important;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #0B0B0B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
}

.login-btn:hover {
    background: #343a40;
}

.signup-link {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #777777;
}

.signup-link a {
    color: #0B0B0B !important;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        height: auto;
        max-width: 400px;
    }

    .auth-left {
        height: 200px;
    }

    .auth-illustration {
        width: 150px;
        height: 150px;
    }

    .auth-right {
        padding: 40px 30px;
    }

    .w-xs-100 {
        width: 100% !important;
    }
}