body {
    margin: 0px;
}

.page {
    min-height: 100vh;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    color: black;
    text-align: center;
}

.login {
    height: 350px;
    width: 540px;
    flex-direction: column;
    border-radius: 5px;
}

.login-header {
    height: 50px;
    background-color: #f3e1d0;
    width: 100%;
    padding: 20px;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
}

.login-body {
    height: 300px;
    background-color: white;
    width: 100%;
    color: black;
    flex-direction: column;
    padding: 20px;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    width: 240px;
    height: 50px;
    background-color: #f3e1d0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: black;
    margin: 20px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
}

.button:hover {
    background-color: #000035;
}

h1 {
    font-size: 25px;
}

#loader {
    color: black;
}

#logo {
    max-width: 50px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}
