
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #001836;
}

.reset-cursor {
    cursor: initial !important;
}

.container {
    text-align: center;
    z-index: 1;
}

.z-hidden {
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 180px;
}

#main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 256px;
    margin-bottom: 32px;
}

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

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

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #00ffff;
    animation: spin 1s ease-in-out infinite;
}

button.entra-id {
    height: 41px;
    padding: 0 12px;
    background-color: #2F2F2F;
    color: #FFFFFF;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

p#error{
    color: #B00020;
    font-size: 14px;
    font-family: 'Segoe UI', serif;
    margin: 8px 0 0;
}