@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Oswald:wght@600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body.magc-login {
    background: #0b0f19;
    font-family: 'Barlow Condensed', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.login-container {
    background: #161b28;
    border: 1px solid #1e2535;
    border-top: 3px solid #00BFFF;
    padding: 44px 40px 40px;
    border-radius: 14px;
    width: 340px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.login-container h1 {
    font-family: 'Oswald';
    text-align: center;
    font-size: 26px;
    letter-spacing: 5px;
    color: #00BFFF;
    margin-bottom: 6px;
}

.login-subtitle {
    text-align: center;
    font-size: 12px;
    color: #6b7a99;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.login-container input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #1e2535;
    border-radius: 8px;
    background: #0d1120;
    color: white;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    transition: border-color .2s;
}

.login-container input:focus {
    outline: none;
    border-color: #00BFFF;
}

.login-container button {
    width: 100%;
    padding: 13px;
    background: #00BFFF;
    border: none;
    border-radius: 8px;
    color: #0b0f19;
    font-family: 'Oswald';
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
}

.login-container button:hover { background: #33cfff; }

#loginError {
    margin-top: 14px;
    color: #e74c3c;
    text-align: center;
    font-size: 14px;
    min-height: 20px;
}
