@font-face {
    font-family: 'CentarHeavy';
    src: url('../font/xxiicentarheavyext.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --md-sys-color-primary: #0568C1;
    --md-filled-button-container-shape: 5px;
    --md-filled-button-label-text-font: 'CentarHeavy';
    --md-filled-button-label-text-size: 1rem;
    --md-outlined-text-field-container-shape: 5px;
    --md-outlined-text-field-label-text-font: 'CentarHeavy';
    --md-outlined-text-field-label-text-size: 1rem;
    --md-outlined-text-field-label-text-populated-size: .9rem;
    --md-outlined-text-field-input-text-font: 'system-ui';
    --md-outlined-text-field-input-text-size: 1rem;
}


html {
    background: url(../img/fondocircu.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

h2 {
    font-family: 'CentarHeavy';
    font-size: 25px;
    line-height: 40px;
    margin-top: 5px;
    font-weight: 600;
    color: #272346;
    text-align: center;
}

dialog {
    margin: auto;
    padding: 1rem;
    min-width: 350px;
    border-radius: 0.25rem;
    border: 1px solid #000000;
}

.form-group {
    text-align: center;
    margin: 5px 0;
}

.group {
    display: flex;
    align-items: center;
    padding: 0.5vh 1vh 0.5vh 1vh;
    background-color: #ffffff;
}

.logo {
    text-align: center;
}

.wd100 {
    width: 100%;
}

.logo img {
    width: 50%;
    margin: auto;
}

#login-button {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    margin: auto;
    width: 350px;
    height: 350px;
    overflow: hidden;
    opacity: 1;
    box-shadow: 0px 0px 0px #000;
}

.close-btn {
    position: absolute;
    cursor: pointer;
    line-height: 18px;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 10px;
    opacity: .2;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.close-btn:hover {
    opacity: .5;
}

img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
}

.imglogin {
    opacity: 0.99;
}

#container {
    display: none;
}

.login-form {
    position: absolute;
    background: rgba(255, 255, 255);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 350px;
    height: 450px;
    margin: auto;
    padding: 2em;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px rgb(45, 122, 223)
}

.msg .errorPass {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    font-family: 'CentarHeavy';
    font-weight: bold;
    text-align: center;
    color: #6d0e0e;
    border: 2px solid #961212;
    background-color: #ff7f7f;
}