body{
    margin: 0;
    background: beige;
    font-family: "Segoe UI", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.login-box{
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 360px;
}
.login-box h2{
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.login-box input{
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.login-box button{
    width: 100%;
    padding: 12px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s easy;
}

.login-box button:hover{
    background: #003f88;
}

.login-box small{
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #777;
}
