
.auth-login-form {
    width: 100%;
    display: flex;
    min-height: 70vh;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.auth-login-form .form-login {
    width: 850px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.bg-form-signin {
    background: #41ce34;
    background: -webkit-linear-gradient(to right, #18a770, #41ce34);
    background: linear-gradient(to right, #18a770, #41ce34);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: 0 0;
}

.auth-login-form button {
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #3dca63;
    background-color: #2cba52;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.bg-form-signup {
    background: #349dce;
    background: -webkit-linear-gradient(to right, #0c93b4, #2b6db9);
    background: linear-gradient(to right, #0c93b4, #2b6db9);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: 0 0;
}

.bg-form-forgot {
    background: #349dce;
    background: -webkit-linear-gradient(to right, #19ccbd, #349dce);
    background: linear-gradient(to right, #19ccbd, #349dce);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: 0 0;
}

.auth-login-form button:active {
    transform: scale(0.95);
}

.auth-login-form button:focus {
    outline: none;
}

.auth-login-form button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.auth-login-form a.ghost {
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #3dca63;
    color: #3dca63;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    background-color: transparent;
}

.auth-login-content {
    min-height: 420px;
}

.p-login {
    padding: 3.5rem !important;
}

@media (min-width: 1200px) {
    .p-login {
        padding: 5.5rem !important;
    }
}

.input-icon {
    position: relative;
}

.input-icon input,
.input-icon select {
    padding-left: 2.5rem;
}

.input-icon-addon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    color: #9aa0ac;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 2.5rem;
    pointer-events: none;
}

.input-icon-addon:last-child {
    left: auto;
    right: 0;
}

.auth-login-form .form-login .btn-submit {
    height: 50px;
    color: #fff;
    text-transform: uppercase;
}

.dark .auth-login-form {
    background: none;
}

.dark .auth-login-form .form-login {
    background-color: #262330 !important;
}


.custom-switch {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.custom-switch-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-switches-stacked {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.custom-switches-stacked .custom-switch {
    margin-bottom: .5rem;
}

.custom-switch-indicator {
    display: inline-block;
    height: 1.25rem;
    width: 2.25rem;
    background: #e9ecef;
    border-radius: 50px;
    position: relative;
    vertical-align: bottom;
    border: 1px solid rgba(0, 40, 100, 0.12);
    transition: .3s border-color, .3s background-color;
}

.custom-switch-indicator:before {
    content: '';
    position: absolute;
    height: calc(1.25rem - 4px);
    width: calc(1.25rem - 4px);
    top: 1px;
    left: 1px;
    background: #fff;
    border-radius: 50%;
    transition: .3s left;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}

.custom-switch-input:checked~.custom-switch-indicator {
    background: #2dcee3;
}

.custom-switch-input:checked~.custom-switch-indicator:before {
    left: calc(1rem + 1px);
}

.custom-switch-input:focus~.custom-switch-indicator {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.25);
    border-color: #467fcf;
}

.custom-switch-description {
    margin-left: .5rem;
    color: #6e7687;
    transition: .3s color;
}

.custom-switch-input:checked~.custom-switch-description {
    color: #495057;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    background-color: #467fcf;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #f5f7fb, 0 0 0 2px rgba(70, 127, 207, 0.25);
}

.custom-control-input:active~.custom-control-label::before {
    color: #fff;
    background-color: #d4e1f4;
}

.custom-control-input:disabled~.custom-control-label {
    color: #868e96;
}

.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 3px;
    border: 1px solid #bbb;
    background-color: #fff;
}

.custom-checkbox .custom-control-label.centered::before {
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox .custom-control-label.centered::after {
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #467fcf;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    background-color: #467fcf;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(70, 127, 207, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(70, 127, 207, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #467fcf;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(70, 127, 207, 0.5);
}

.rtl .custom-control {
    padding-right: 1.5rem !important;
    padding-left: unset !important;
}

.rtl .custom-control-label::before,
.rtl .custom-control-label::after {
    left: unset !important;
    right: 0 !important;
}