/*
	LOADER
*/

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #3498db;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

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

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

/*
    BANNER INICIO - IMAGEM DE FUNDO PARA LOGIN
*/

.banner-inicio {
    background-image: url("../img/img-fundo-login.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 4rem 3rem;
}

    .banner-inicio h2 {
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .banner-inicio h2,
    .banner-inicio h5 {
        color: #fff;
    }

/*
    Campos texto
*/
input:read-only {
    background-color: #e2e2e2 !important;
    color: #5f5f5f !important;
}
input[readonly] {
    background-color: #ffd800 !important;
    color: #5f5f5f !important;
}

.toast-top-right-custom {
    top: 12px;
    right: 12px;
    width: 30%;
}
#toast-container.toast-top-right-custom > div {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}