:root {
    --primary-magenta: #D80073;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(216, 0, 115, 0.3);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    max-width: 180px;
    margin-bottom: 30px;
}

h2 {
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p.subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-left: 5px;
}

input {
    width: 100%;
    padding: 12px 15px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 10px rgba(216, 0, 115, 0.2);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--primary-magenta);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-login:hover {
    background: #b5005f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 0, 115, 0.4);
}

.footer-links {
    margin-top: 25px;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--primary-magenta);
    text-decoration: none;
}

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