/* Authentication page styles (login/register) */

body.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

.auth-container h1 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-form-group input[type="text"],
.auth-form-group input[type="password"],
.auth-form-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.auth-form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.auth-form-group small {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

.auth-form-group .error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.btn-auth-submit {
    width: 100%;
    margin-top: 10px;
}

