@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

body {
    font-family: 'Questrial', sans-serif;
}

::selection {
    color: var(--text-white);
    background: var(--primary);
}

::-moz-selection {
    color: var(--text-white);
    background: var(--primary);
}

input:focus,
.form-control:focus {
    outline: none !important;
    border-color: var(--primary);
    box-shadow: 0 0 1.2px var(--primary);
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/images/preloader/Ripple-100px.gif') 50% 50% no-repeat #fff;
}

.login-wrapper {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 340px;
    height: 400px;
    margin: auto;
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    overflow: scroll;
    display: table;
}

.login-div {
    display: table-cell;
    vertical-align: middle;
    width: 300px;
    padding: 24px;
    border-radius: 5px;
    /* background: var(--back-white); */
    box-shadow: 0 0 2px var(--back-gray);
    -webkit-box-shadow: 0 0 2px var(--back-gray);
}

.logo {
    display: block;
    width: 80px;
    height: 80px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-size: 24px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}

.sub-title {
    display: block;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: lowercase;
}

input[type='tel'],
.iti {
    width: 100%;
}

svg {
    height: 22px;
    margin: 0 10px -3px 25px;
    margin-top: 15px !important;
}

.signin-button {
    outline: none;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 40px;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
    color: var(--text-white);
    background: var(--primary);
}

.signin-button:hover,
.signin-button:focus,
.signin-button:active {
    color: var(--text-white);
    background: var(--primary);
    outline: 1px solid var(--primary) !important;
}

.link a {
    font-size: 13px;
    text-decoration: none;
    color: var(--text-dark);
}

.link a span {
    font-weight: bold;
    text-decoration: underline;
    color: var(--primary);
}

label.radio {
    cursor: pointer;
}

label.radio input {
    top: 0;
    left: 0;
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

label.radio span {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    color: var(--text-dark);
    border: 1px solid var(--back-gray);
}

label.radio input:checked+span {
    color: var(--text-white);
    background: var(--primary);
    border-color: var(--primary);
}

#error-msg {
    margin-top: 0.8rem;
    color: #cc3300;
}