body {
    font-family: "Rethink Sans", "Roboto", sans-serif;
    background: #fafafa;
    font-size: 0.9em !important;
}

.text-brand {
    color: #0e789d;
}

.rc-anchor-light {
    background: #f9f9f9;
    color: #000;
    width: 100% !important;
}

.danger-alert {
    background: #d24f5c !important;
    color: white !important;
}

.success-alert {
    background: mediumseagreen !important;
    color: white !important;
}

#intro {
    background: #fff;
    height: 100vh;
}

body {
    background: #00425112 !important;
}

.reload {
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.navbar .nav-link {
    color: #fff !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}

form {
    background: #054e61 !important;
    border-radius: 5px;
}

.login_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    overflow-y: scroll;
}

#loginBox {
    width: 460px;
}

.form-control {
    background: transparent;
    /*border-bottom: 2px solid #1499bb;*/
    border-left: none;
    border-right: none;
    border-top: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.form-control:focus {
    outline: none;
    color: #fff;
    background: none !important;
    box-shadow: none !important;
    border-bottom-color: #175361;
}

::placeholder {
    color: #fff !important;
    opacity: 0.7 !important;
}

.password .icon-box {
    position: relative;
    color: #e3e0e0;
    top: -30px;
    left: 340px;
}

.logo {
    height: 37px !important;
    width: auto;
    border-radius: 4px !important;
}

.toastContainer {
    border-radius: 0px !important;
}

#resendTokenLink,
#countdown {
    display: none;
}

#pswd_info ul li {
    list-style: none;
    /*margin-left: -40px;*/
}

.invalid {
    color: #ec3f41;
}

.invalid::before {
    content: '\F623';
    font-family: "bootstrap-icons";
    padding-right: 5px;
}

.valid {
    color: #3a7d34;
}

.valid::before {
    content: '\F26B';
    font-family: "bootstrap-icons";
    padding-right: 5px;
}

/* TOAST */

.toastContainer {
    background: #ffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    position: fixed; /* Change from absolute to fixed */
    top: 20px; /* Adjust as needed to prevent overlapping other elements */
    right: -500px; /* Move completely out of view */
    padding: 20px 35px 20px 25px;
    z-index: 9999;
    width: 450px;
    overflow: hidden;
    transform: translateX(0); /* Ensure transform works within view */
    opacity: 0; /* Hidden initially */
    visibility: hidden; /* Hidden initially */
    transition: all 0.4s ease-in-out, opacity 0.4s ease;
}

.toastContainer.active {
    right: 10px; /* Bring it back into view */
    opacity: 1;
    visibility: visible;
}

.toastContainer-success {
    border-left: 6px solid #319e0a;
}

.toastContainer-danger {
    border-left: 6px solid #cf1c2d;
}

.toastContainer-warning {
    border-left: 6px solid #9e5e0a;
}

.toastContainer-info {
    border-left: 6px solid #0a53be;
}

.toastContainer.active {
    transform: translateX(0%);
    display: block;
}

.toastContainer .toast-content {
    display: flex;
    align-items: center;
}

.toast-content .check {
    font-size: 24px;
    font-weight: 900
}

.toast-content-back {
    width: 47px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
}

.toast-content-back-success {
    border: 4px solid #319e0a

}

.toast-content .check-success {
    color: #319e0a;
}

.toast-content-back-danger {
    border: 4px solid #d0636e;

}

.toast-content .check-danger {
    color: #cf1c2d;
}

.toast-content-back-warning {
    border: 4px solid #9e5e0a;
}

.toast-content .check-warning {
    color: #9e5e0a;
}

.toast-content-back-info {
    border: 4px solid #0a53be;
}

.toast-content .check-info {
    color: #0a53be;
}

.toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.message .text.text-1 {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    align-items: center;
}

.toastContainer .custom-close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;

}

.toastContainer .custom-close:hover {
    opacity: 1;
}

.toastContainer .custom-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

.toastContainer .custom-progress-bar:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
/ background: #0a53be;
/
}

.toastContainer .custom-progress-bar-success:before {
    background: #319e0a;
}

.toastContainer .custom-progress-bar-danger:before {
    background: #cf1c2d;
}

.toastContainer .custom-progress-bar-warning:before {
    background: #9e5e0a;
}

.toastContainer .custom-progress-bar-info:before {
    background: #0a53be;
}

.custom-progress-bar.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        width: 0;
    }
}