body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    width: 300px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background-color: #005bbb;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
}
