﻿body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

html {
    font-family: sans-serif;
}

.form-signin-page2 {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: 25px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.loading {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--backgroundColor);
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid lightgray;
    border-top-color: #333;
    animation: spinner 1.2s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}