body {
    
    /* Use Roboto font */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.loader {
    text-align: center;
    display: block;
}

.loader p {
    margin-top: 10px;
}

.content {
    display: none;
    width: 30em;

}

.welcome-title {
    font-size: 3em;
    font-weight: bold;
    position: absolute;
    top: 1.5em;
    /* Position at the top of the viewport */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Center horizontally */
    text-align: center;
    /* Center the text inside the container */
    font-size: 24px;
    font-weight: bold;

}


.form-button {
    display: flex;
    justify-content: center;
}

.form-button button {
    width: 100%;
}