  /* Login and Registration Pages */
.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.login-header {
    background: #007bff;
    color: white;
    padding: 30px;
    text-align: center;
}

.login-header h2 {
    margin: 0;
    font-weight: 600;
}

.login-body {
    padding: 30px;
}

.login-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.form-floating {
    margin-bottom: 1rem;
}

.form-floating label {
    color: #6c757d;
}

.btn-login {
    background: #007bff;
    border: none;
    padding: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.social-login {
    margin: 20px 0;
}

.btn-social {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #dee2e6;
    background: white;
    color: #333;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.btn-google {
    color: #db4437;
}

.btn-facebook {
    color: #4267B2;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Registration specific styles */
.registration-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 40px 0;
}

.registration-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.registration-header {
    background: #007bff;
    color: white;
    padding: 30px;
    text-align: center;
}

.registration-body {
    padding: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: 600;
}

.step.active .step-number {
    background: #007bff;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.step.active .step-label {
    color: #007bff;
    font-weight: 600;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-container,
    .registration-container {
        padding: 10px;
    }
    
    .login-card,
    .registration-card {
        margin: 0;
    }
    
    .registration-body {
        padding: 20px;
    }
}