/* d9e7b2.css */
body {
    margin:0;
    padding:0;
    font-family: 'Inter', sans-serif;
    background:#0a0a0a;
    color:#e5e5e5;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.container {
    background:#111;
    padding:3rem;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(109,109,255,0.2);
    text-align:center;
    width:350px;
}

.container h1 {
    color:#6d6dff;
    margin-bottom:1rem;
}

.container form input {
    width:100%;
    padding:0.8rem;
    margin:0.5rem 0;
    border-radius:8px;
    border:1px solid #222;
    background:#1c1c1c;
    color:#e5e5e5;
}

.container form button {
    width:100%;
    padding:0.8rem;
    margin-top:1rem;
    border:none;
    border-radius:50px;
    background:#6d6dff;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.container form button:hover {
    background:#5858e0;
}

.container .link {
    margin-top:1rem;
    display:block;
    color:#aaa;
    text-decoration:none;
}

.container .link:hover {
    color:#6d6dff;
}

.error {
    color:#ff6d6d;
    margin-bottom:0.8rem;
}
