
body{
    font-family: 'Poppins', sans-serif;
    background: url("images/bg-site.png") top center no-repeat;
    background-size: cover;
    background-attachment: fixed;  
    font-size: 15px;
}

:root {
    --color-main: #002f5d;
    --color-secondary: #13b2e9;
    
    --weight-strong: 600;
    --weight-bold: 700;

    --hover-duration: 0.3s;
    --index-modal: 4;
}

.login-content {
    padding: 20px;
    border-radius: 5px;  
    background-color: #ffffff;
}

.login-logo{
    text-align: center;
    margin: 30px 0;
}

.login-content h2 {
    text-align: center;
    font-weight: 800;
    color: var(--color-main); 
}

.login-content p {
    color: var(--color-secondary);   
}

.box-button {
    margin-top: 15px;
}

.btn-primary {
    border-radius: 0;
}

.btn-password {
    background-color: #f3f3f3;
    border: 1px solid var(--color-secondary) !important;
    border-radius: 0;
    color: #666;
    padding: 16px;
    height: 58px;
    cursor: pointer;
}

.btn-password:focus {
    outline: none !important; 
    box-shadow: none;    
}

a {
    font-size: 14px;
    color: var(--color-secondary);
    text-decoration: none !important;
}

p {
    text-align: center;
    font-size: 15px;
}

form {
    margin-top: 30px;
}

form .form-check-label {
    font-size: 14px;
}

form input {
    border: 1px solid var(--color-secondary) !important;
    border-radius: 0 !important;
    color: #666;
}

.text-right {
    text-align: right !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus {
    outline: none !important; 
    box-shadow: 0 0 10px var(--color-secondary); 
    border: 0 !important; 
    transition: 0.5s;
    background-color: #f9f9f9 !important;   
}

/** MESSAGE */
.message {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #cccccc;
    font-weight: var(--weight-bold);
    background-color: #f9f9f9;
}

.message.success {
    color: var(--bs-success);
    border-color: var(--bs-success);
    background-color: #ffffff;
}

.message.info {
    color: var(--bs-info);
    border-color: var(--bs-info);
    background-color: #ffffff;
}

.message.warning {
    color: var(--bs-warning);
    border-color: var(--bs-warning);
    background-color: #ffffff;
}

.message.error {
    color: var(--bs-danger);
    border-color: var(--bs-danger);
    background-color: #ffffff;
}

/*ICONS NORMALIZE*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}


/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--index-modal) * 2);
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--bs-success);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong);
}

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

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