html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;

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

#screen {
    width: 100%;
    height: 100%;
}

#form {
    width: 320px;
    background: #f4e5db;
    padding: 18px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background: url('logo.png') center/contain no-repeat;
}

h1 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
}


#emailButton {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 190px;
    height: 40px;

    border-radius: 4px;
    background-color: #FFFFFF;
    border: 1px solid #DADCE0;
    cursor: pointer;
    user-select: none;

    font-family: "Google Sans",arial,sans-serif;
    font-size: 14px;
    color: #3c4043;
    letter-spacing: .25px;
    text-align: center;
    white-space: nowrap;
}

#emailButton:hover {
    background-color: #F0F5FE;
    border: 1px solid #D2E3FC;
}

#emailButton:active {
    outline: 2px solid #327EA8;
    background-color: #ECF3FE; 
    border: 1px solid #FFFFFF;
}

#emailButton.text {
    color: #3c4043;
    letter-spacing: .25px;
}

#emailIcon{
    width: 18px;
    height: 18px;
    background-image: url("mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

#googleButton {
    cursor: pointer;
}

.divider {
    width: 95%;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1px;
    background-color: #855318;
}

.signup {
    font-size: 0.9rem;
    color: #000;
}

.signup a {
    color: #855318;
    text-decoration: none;
    font-weight: 500;
}

.signup a:hover {
    text-decoration: underline;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;

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

.spinner {
    border: 6px solid #f4e5db;
    border-top: 6px solid #855318;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}