/* Auth Specific Styles */

/* Auth Modal */
.auth-modal {
    max-width: 450px;
}

.auth-header {
    border-bottom: none;
    padding-bottom: 0;
}

.auth-title {
    font-weight: 600;
    color: var(--dark);
}

.auth-tabs .nav-link {
    color: var(--secondary);
    font-weight: 500;
    border: none;
    padding: 12px 20px;
}

.auth-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    position: relative;
}

.auth-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.auth-body {
    padding: 30px;
}

.auth-footer {
    border-top: none;
    padding-top: 0;
}

/* Form Styles */
.auth-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.auth-form label {
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
}

.auth-form .form-check-label {
    margin-left: 5px;
}

.auth-form .btn {
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
}

/* Social Login */
.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-login-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* User Type Selection */
.user-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.user-type-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-type-option:hover {
    border-color: var(--primary);
}

.user-type-option.active {
    border-color: var(--primary);
    background-color: rgba(13, 110, 253, 0.05);
}

.user-type-option i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.user-type-option h5 {
    font-weight: 500;
    margin-bottom: 5px;
}

.user-type-option p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .auth-body {
        padding: 20px;
    }

    .user-type-selector {
        flex-direction: column;
    }
}

/* Auth Section */
.auth-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 40px;
}

.auth-logo-img {
    height: 50px;
    width: auto;
}

.auth-header {
    margin-bottom: 30px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #718096;
    font-size: 16px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    font-size: 14px;
    color: #4a5568;
}

/* Buttons */
.btn-primary {
    background-color: #6c63ff;
    border-color: #6c63ff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a52d6;
    border-color: #5a52d6;
    transform: translateY(-2px);
}

/* Links */
.forgot-password {
    font-size: 14px;
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #5a52d6;
    text-decoration: underline;
}

/* Divider */
.divider-with-text {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider-with-text::before,
.divider-with-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider-text {
    padding: 0 15px;
    color: #718096;
    font-size: 14px;
}

/* Social Login */
.social-login .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-login .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Footer */
.auth-footer-text {
    color: #718096;
    font-size: 14px;
}

.auth-footer-link {
    color: #6c63ff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer-link:hover {
    color: #5a52d6;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-section {
        padding: 60px 0;
    }

    .auth-card {
        padding: 30px;
    }

    .auth-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 25px;
        border-radius: 0;
    }

    .auth-section {
        padding: 40px 0;
    }
}

/* Verification Page Styles */
.verification-message {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verification-message p {
    margin-bottom: 10px;
}

.alert-success {
    background-color: #f0fff4;
    border-color: #c6f6d5;
    color: #2f855a;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.alert-success i {
    font-size: 18px;
}