body{
    margin: 0;
    height: 100vh;
    background: radial-gradient(circle, rgba(60,60,70, 1), rgba(30,30,40));
}

.container{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

form{
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(50,50,255,1) 0%, rgba(255,50,50,1) 100%);
    padding: 20px;
    margin: none;
    border-radius: 15px;
}

input{
    margin: 15px;
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    font-size: 16pt;
    border: none;
    transition: 0.5s all ease;

}

input:hover{
    background-color: lightgray;
    transition: 0.5s all ease;
}

button{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    margin: auto;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 15px;
    transition: 0.5s all ease;
}

button:hover{
    color: white;
    background-color: rgba(5,190,0,1);
    transition: 0.5s all ease;
}

h2{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 20pt;
}