.login-wrapper {
    background: rgb(0 56 43);
}

.initial-loader {
    align-items: center;
    background: rgb(0 56 43);
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    width: 100%;
    z-index: 2000;
}

.initial-loader.loader-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.initial-loader-logo {
    height: 70px;
    margin-bottom: 25px;
    max-width: 80%;
}

.initial-loader-spinner {
    border: 3px solid rgb(255 255 255 / 35%);
    border-radius: 50%;
    border-top-color: #fff;
    height: 32px;
    margin-bottom: 12px;
    width: 32px;
    animation: login-loader-spin 0.8s linear infinite;
}

@keyframes login-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .initial-loader-spinner {
        animation: none;
    }
}

.login-wrapper .login-container {
    float: none;
}

.logo-container {
    margin-bottom: 30px;
}

.form-group-default+.error {
    margin-top: -15px;
    margin-right: 5px;
    margin-left: 5px;
}

.txt-suyana {
    margin-bottom: -20px !important;
    font-size: 20px;
}
.bg-message {
    background-color: rgb(0 0 0 / 50%);
    padding: 20px 20px 20px 0;
    border-radius: 10px;
}
.text-justify {
    text-align: justify;
    line-height: 15px;
}

.border-radious {
    border-radius: var(--bs-border-radius);
    -webkit-border-radius: var(--bs-border-radius);
    -moz-border-radius: var(--bs-border-radius);
}

.border-radius {
    border-radius: var(--bs-border-radius);
    -webkit-border-radius: var(--bs-border-radius);
    -moz-border-radius: var(--bs-border-radius);
}

.password-toggle {
    border: 0;
    cursor: pointer;
}

.password-toggle:focus,
.password-toggle:hover {
    color: rgb(0 56 43);
    outline: 2px solid rgb(0 56 43 / 30%);
    outline-offset: -2px;
}

.btn-suyana:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 56 43 / 30%);
}

.wrap-login {
    margin: 40px 40px 0 40px;
}

.wrap-footer {
    margin: 10px 40px 40px 40px;
}

.btn-suyana {
    background: rgb(0 56 43);
    color: #fff;
}

.btn-suyana:hover:not(.active) {
    background: rgb(0 56 43 / 70%);
    color: #fff;
}

@media (max-width:768px){
    .logo-container {
        margin-bottom: 10px;
    }
    .logo-container img {
        height: 50px;
    }
    .wrap-footer {
        margin: 10px 30px 20px 30px;
    }
    .wrap-login {
        margin: 30px 30px 0 30px;
    }

    .bg-message {
        display: none;
    }
    .login-wrapper .login-container {
        width: calc(100% - 20px);
    }
}
