
/* Environment: dev - Generated styles */

.debug-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    z-index: 9999;
}
/* Login page specific styles */

.active {
    font-weight: bold;
    text-decoration: underline;
}

#login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}

.auth-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.auth-tab:hover {
    background-color: #f9f9f9;
}

.auth-tab.active {
    color: #4b6cb7;
    border-bottom: 3px solid #4b6cb7;
}

.auth-content {
    padding: 2rem;
}

.auth-content.hidden {
    display: none;
}

.auth-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    border-color: #4b6cb7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(75, 108, 183, 0.2);
}

.remember-me,
.terms {
    display: flex;
    align-items: center;
}

.remember-me input,
.terms input {
    margin-right: 0.5rem;
}

.auth-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #4b6cb7;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-button:hover {
    background-color: #3a5a9f;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer a {
    color: #4b6cb7;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.terms a {
    color: #4b6cb7;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Error message styling */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Success message styling */
.success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-container {
        box-shadow: none;
        border-radius: 0;
    }
    
    .auth-content {
        padding: 1.5rem;
    }
}