body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction:column;
    align-items: center;
    height: 100vh;
}

h1 {
    display:block;
    margin-top:20px;
    font-size:22px;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

form {
    background-color: #fff;
    padding: 20px;
    width:400px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="password"] {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
