/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 27 févr. 2025, 16:10:07
    Author     : FANGBEMI Abla Ilétou
*/

.required {
    color: red !important;
    float: none;
    font-weight: 700
}

/************************************* LOADING WICKET ******************************************************/
.containern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100000;
}
.containern:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.containern .spinner-frame {
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid #f0ebf8;
    padding: 10px;
}
.containern .spinner-frame .spinner-cover {
    background: #fff3cd;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}
.containern .spinner-frame .spinner-bar {
    background: #29d;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
    -webkit-animation: spinny 1s linear infinite;
    transform-origin: 100% 100%;
}
@-webkit-keyframes spinny {
    0% {
        transform: rotate(0deg);
        background: #040909;
    }
    50% {
        transform: rotate(180deg);
        background: #4aacff;
    }
    100% {
        transform: rotate(360deg);
        background: #f34040;
    }
}

.sign-in-background {
    background: url(../images/login/2.png) no-repeat 0 0;
    background-size: cover;
}