.login-form-container {
    width: 384px;
    margin: 32px auto;
}

.login-form-title {
    font-weight: 700;
    color: #333333;
    background: none;
    vertical-align: middle;
    font-size: 35px;
}

.login-form-label {
    font-weight: 500;
    color: #212529;
    font-size: 1rem;
}

.login-form-input {
    box-sizing: border-box;
    border-radius: 6px !important;
    height: 48px;
    padding-left: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #1c0230;
    background-color: #F7FAFC !important;
    border: 0;
    outline: none;
    box-shadow: none;
}
.login-form-input:focus {
    outline: none;
    box-shadow: none;
}
.login-form-input::placeholder {
    font-size: 15px;
}
.login-form-button {
    background-color: #20409a;
    border-radius: 6px;
    position: relative;
    color: #fff;
    font-weight: 500;
    box-shadow: 0px 0px 20px rgb(20 25 67 / 20%) !important;
    transition: box-shadow, background-color 0.5s ease !important;
    font-size: 1.25rem;
    padding: 9px 10px;
    text-transform: capitalize;
}

.login-form-wrapper {
    min-height: 100vh;
}

.login-footer-link {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(179.7deg, #20409a -10.06%, #21176b 106.57%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

footer .footer-wrapper {
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    color: #555;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #F5F6F8;
    position: relative;
}

footer .footer-separator {
    padding: 11px 0.5px;
    background: #ddd;
    margin-bottom: 4px;
}

footer .language-selector {
    width: 120px;
    margin-left: 5px;
}

footer .language-selector > select:focus {
    box-shadow: none;
    border-color: var(--falcon-input-border-color);
}
.login-form-description {
    background: linear-gradient(340deg, rgba(2,130,162,1) 0%, rgba(34,146,232,1) 46%, rgba(229,254,243,1) 100%);
    padding: 40px;
}
.dark .login-form-description {
    background: rgb(18,30,45); background: linear-gradient(306deg, rgba(18,30,45,1) 33%, rgba(30,86,99,1) 74%, rgba(17,104,126,1) 100%);
}

.dark .login-form-description > div {
    color: #fff !important;
}

.dark .footer-wrapper {
    background-color: #121e2d;
    color: #fff;
}

.dark .login-form-title,
.dark .login-form-label {
    color: #fff;
}
.dark .form-control:focus {
    color: #1c0230 !important;
}
.login-form-description .login-content-text {
    direction: rtl;
}

[dir=rtl] .main > * {
    direction: rtl;
}

@media screen and (max-width: 991px) {
    .login-form-description {
        order: 1;
    }
    .login-form-wrapper {
        order: 0;
    }
    .footer-wrapper {
        flex-direction: column;
    }

    .footer-wrapper .footer-separator {
        display: none;
    }
}