/* Login and Registration Styles */
.auth-container {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e1e1e1;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #4a6fdc;
    border-bottom: 2px solid #4a6fdc;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.user-type-selector {
    display: flex;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
}

.user-type-btn {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-type-btn.active {
    background-color: #4a6fdc;
    color: white;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #4a6fdc;
    outline: none;
}

.form-group input[type="file"] {
    padding: 0.5rem 0;
    border: none;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
}

.form-footer a {
    color: #4a6fdc;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .user-type-selector {
        flex-direction: column;
    }
    
    .user-type-btn {
        padding: 0.5rem;
    }
}
