/* Auth Modal Styling */
.auth-modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.auth-modal-header {
    background: #00AFEF;
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.auth-modal-title {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.auth-modal-body {
    padding: 30px;
    background-color: #fff;
}

/* Tabs */
.auth-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.auth-tabs .nav-link {
    color: #888;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    transition: all 0.3s;
}

.auth-tabs .nav-link:hover {
    color: #0056b3;
}

.auth-tabs .nav-link.active {
    color: #0056b3;
    background: transparent;
    border-bottom: 3px solid #0056b3;
}

/* Form Fields */
.form-floating>.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-floating>.form-control:focus {
    border-color: #00a8e8;
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
}

.btn-auth-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #0056b3, #00a8e8);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-auth-submit:hover {
    background: linear-gradient(135deg, #004494, #008ecc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}