@import url(./root.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
* {
    font-family: 'Roboto', sans-serif !important;
}
.login {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 37px);
    min-height: 600px;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.text-primary {
    color: var(--bs-primary) !important;
}
.bg-primary {
    background-color: var(--bs-primary) !important;
}
.btn-primary{
    background-color: var(--bs-primary) !important;
}

a { color: var(--bs-primary); }
a:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover
{
    filter: brightness(92%);
}
text
input:disabled {
    filter: grayscale(.5) !important;
}
.msg-error {
    display: block;
    width: 100%;
    min-height: 8px;
}
h1{
    font-size: 36px;
}
h2 {
font-size: 32px;
}
h3 {
font-size: 28px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 20px;
}
h6 {
font-size: 16px;
}
p {
color: var(--bs-secondary);
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="button"],
input[type="submit"],
button
{
    margin-top: 8px;
    margin-bottom: 8px;
}
form {
    max-width: 400px;
}
footer div {
        font-size: 14px;
}
@media (max-width: 370px) {
    h1{
    font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 12px;
    }
}
.btn-close {
    background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") center/1em auto no-repeat;;
}