body {
    background-color: #f5f5f5;
}

label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.container {
    padding: 0;
}

.panel-login,
.panel-error {
    margin: 0;
    width: 100%;
    border-radius: 0;
}

.panel-logo {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100px;
}

.panel-logo a {
    display: block;
    margin: auto;
}

.login-header {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.login-footer {
    width: 100%;
    margin: 10px 0px 0 0px;
    font-weight: 400;
    font-size: 12px;
    color: #757575;
}

#login-footer-powered {
    width: 200px;
    margin: auto;
    text-align: center;
}

#login-footer-powered img {
    width: 200px;
    height: 80px;
}

#login-footer-powered span {
    font-weight: 500;
    font-size: 12px;
    color: #ccc;
}

#login-footer-powered-link {
    opacity: 0.7;
    z-index: 10;
    position: fixed;
    bottom: 0;
    left: 0;
}

#login-footer-powered-link:hover {
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

@media only screen and (min-width: 768px) {

    .container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .panel-login,
    .panel-error {
        border-radius: 3px;
    }

    .panel-error {
        margin: 0 auto 0 auto;
        width: 500px;
    }

    .panel-login {
        margin: 0 auto 20px auto;
        width: 360px;
    }
}


.loader {
    -webkit-animation: spin 0.5s infinite linear;
    animation: spin 0.6s infinite linear;
    border: 2px solid #00a0e3;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    left: -30px;
    bottom: 15px;
    height: 20px;
    position: absolute;
    width: 20px;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

.input-control {
    position: relative;
}

.input-control:first-child {
    margin-top: 25px;
}

.input-control:not(:last-child) {
    position: relative;
    margin-bottom: 30px;
}

.input-control label {
    color: #666;
    pointer-events: none;
    font-size: 16px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    transition: all 0.2s ease-in-out;
}

.message {
    font-weight: 500;
    font-size: 1rem;
    margin: 20px 0;
}

.message i {
    margin-right: 3px;
}

.message.is-danger {
    color: var(--bs-danger);
}

.message.is-success {
    color: var(--bs-success);
}