
body{
    font-family: 'Poppins', sans-serif;
    /*background: #e3e6f0;*/
    background-image: var(--gradient);
    font-size: 14px;
}

:root {
    --color-main: #4e73df;
    --color-secondary: #fd7a6b;
    --color-paid: #28a745;
    --color-unpaid: #dc3545;
    --gradient: linear-gradient(to right, rgb(120, 87, 255), #4e73df);
}

.login-content {
    padding: 20px;
/*    border: 1px solid #ced4da;*/
    border-radius: 5px;
    background-color: #fff;
}

.login-logo h1 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 25px;
    text-indent: 0;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.login-logo h1 span {
    color: var(--color-secondary);
}

.login-content h2 {
    text-align: center;
    font-weight: 400;
}

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

.btn-primary {
    border-radius: 0 !important;
    color: #fff;
    padding: 12px 0;
    text-transform: uppercase;
    background: var(--gradient) !important;
    border: 0 !important;
}

a {
    text-decoration: none !important;
}

p {
    text-align: center;
}

form {
    
}

form input {
    border-width: 1px !important;
    border-radius: 0 !important;
    font-size: 14px !important;
}

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

form label {
    color: #666 !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus {
    outline: none !important; 
    box-shadow: 0 0 5px rgba(120, 87, 255); 
    /*border: 2px solid rgba(253, 122, 107, 1) !important; */
    border: 1px solid var(--color-main) !important; 
    transition: 0.5s;
    background-color: #f9f9f9 !important;   
}

.btn-password {
    color: #999;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 5px;
}

.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.btn-password:before {
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f06e";
 }
 
.active:before {
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f070";
 }
 
 .btn-password:focus {
    outline: none !important; 
    box-shadow: none;    
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer p {
    color: #fff;
    font-size: 14px;
}

.footer img {
    margin-left: 5px;
}

/*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;;
}

/** 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: #ffffff;
    border-color: var(--bs-success);
    background-color: var(--bs-success);
}

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

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

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