body{
    background-color: #2a2a2a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card{
    background-color: #4d4d4d;
    border-radius: 10px;
    padding: 20px;
}
.card h2{
    color: white;
    margin-bottom: 10px;
}
h5{
    font-size: x-large;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}
.card input{
    margin-bottom: 5px;
    background-color: #3a3a3a;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: 1px;
    border-radius: 2%;
}

.card button{
    margin-top: 10px;
    background-color: #212121;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

p{
    color: white;
    margin-top: 10px;
    text-align: center;
}
.hidden{
    display: none;
}
#error-message{
    color: orange;
}

