body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0px;
    padding: 0px; 
}

.signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 650px;
    height: 400px;
    box-shadow: 0 0 20px silver;
    border-radius: 10px;
}

h1 {
    font-family: "Dosis";
    font-size: 50px;
    text-align: center;
}

[type="text"], [type="password"] {
    border: 0px;
    width: 200px;
    border-bottom: 2px solid black;
}

button{
    background-color: #1390DE;
    color: white;
    border-radius: 30px;
    border: 0px;
    height: 40px;
    width: 220px;
}