
.simple-auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 20px;
}

.simple-auth-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.simple-auth-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.simple-form-group {
    margin-bottom: 20px;
}

.simple-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.simple-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.simple-form-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.simple-auth-button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.simple-auth-button:hover {
    background: #0056b3;
}

.simple-auth-links {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-auth-links a {
    color: #007bff;
    text-decoration: none;
}

.simple-auth-links a:hover {
    text-decoration: underline;
}

.simple-alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.simple-alert-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.simple-alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}
