@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(background.png) no-repeat bottom/cover;
    margin: 0;
    font-family:'Press Start 2p';
}

h2{
    color: #C9374D;
}

.login-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
input {
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin: 10px -10px;
    padding: 10px;
}
button {
    border-radius: 10px;
    padding: 10px 15px;
    background: #C9374D;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}
button:hover {
    background: #FF0023;
}