@import url('styles.css');

.auth-body {
    background: linear-gradient(135deg, var(--background), #24243e, #302b63);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-header h1 {
    margin-top: 8px;
    font-size: 1.8rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
}

.form-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
}

.form-footer a {
    color: var(--accent);
    text-decoration: none;
}

.form-message {
    margin-top: 10px;
    font-size: 0.85rem;
    text-align: center;
}

.form-message.error {
    color: #ff6b6b;
}

.form-message.success {
    color: #3cf787;
}

