body{
    font-family: 'Roboto', sans-serif;
    background: #f2f2f2;
    color: #333;
}

.LoginZone{
    height: 100vh;
    width: 100%;
}

.login__form{
    border-radius: 10px;
}
.form__label{
    font-size: 0.8rem;
    color: #8d8686;
    font-weight: 600;
    letter-spacing: 3.8px;
}

.input__valueform{
    font-size: 1.1rem !important;
    color: #1565C0 !important;
    font-weight: 400 !important;
    letter-spacing: 0.8px !important;
}


.login__space{
    padding: 10px 30px;
}

.logo_login{
    height: 250px;
}
.copyright__login{
    color:#463f3f;
    font-size: 0.6rem;
    text-decoration:none;
}




/* BUBBLE FOR USER MESSAJE SCREEN*/
.message__touser{
    display: flex; /* Utiliza flexbox para centrar verticalmente */
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: center; /* Centra verticalmente los elementos */
    align-items: center; /* Centra horizontalmente los elementos */
    position: fixed;
    right:20px;
    bottom:30px;
    width: 200px;
    height: 80px;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}


.bg__success{
    background: #b5f0ae;
    color: #1b2b19;
}

.bg__error{
    background: #f0a1a1;
    color: #380f07;
}

.text__error{
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2.0px;
    font-weight: 600;
    color: #3d0c06;
}

.text__success{
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2.0px;
    font-weight: 600;
    color: #063110;
}

/* spinner loading */
.loading-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 4px solid rgba(0,0,0,.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: rgb(223, 191, 10);
    animation: spin 1s ease infinite;
}

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