/* assets/css/login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #000000 0%, #dd0000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    color: #333;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-error {
    background: #ffe6e6;
    color: #cc0000;
    border-left-color: #cc0000;
}

.alert-success {
    background: #e6ffe6;
    color: #006600;
    border-left-color: #006600;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #dd0000;
}

button {
    width: 100%;
    padding: 14px;
    background: #dd0000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #000000;
}

.test-info {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
}

.test-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: #dd0000;
    text-decoration: none;
    font-weight: bold;
}

.debug-link {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

.debug-link a {
    color: #666;
    text-decoration: none;
}

.test-buttons {
    margin-top: 15px;
    text-align: center;
}

.test-button {
    padding: 8px 15px;
    margin: 5px;
    background: #666;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.test-button:hover {
    background: #444;
}