/* Account-specific styles */

/* Auth pages */
.auth-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Form controls */
.form-control-lg {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-control-lg:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

/* OAuth buttons */
.oauth-btn {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
    margin-bottom: 10px;
    background: white;
    color: #444;
    display: block;
    width: 100%;
}

.oauth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.btn-apple {
    background: #000;
    color: white;
    border-color: #000;
}

.btn-apple:hover {
    background: #333;
    border-color: #333;
    color: white;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 15px;
}

/* Dashboard cards */
.dashboard-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Profile image */
.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-header {
        padding: 1.5rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success/error messages */
.alert {
    border-radius: 8px;
    border: none;
}

/* Custom checkbox */
.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}