body {
    font-family: "Inter", sans-serif;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #f8fafc;
}

.login-box {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 320px;
    text-align: center;
    border: 1px solid #334155;
}

.login-box h2 {
    margin-bottom: 24px;
    font-weight: 700;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #334155;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    outline: none;
    box-sizing: border-box;
}

.login-box button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #1d4ed8;
}