html,
body {
    height: 100%;
}


/* Base */

@import url(../fonts/dana/fontiran.css);
body {
    line-height: 1.7;
    font-weight: 300;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
label {
    font-family: dana !important;
}

html {
    scroll-behavior: smooth;
}

.dr-rtl {
    direction: rtl;
}

body.my-login-page {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 14px;
}

.my-login-page .brand {
    position: relative;
    text-align: center;
    margin: 2em;
}

.my-login-page .card-wrapper {
    width: 400px;
}

.my-login-page .card {
    border-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}

.my-login-page .card.fat {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-radius: 16px;
}

.my-login-page .card .card-title {
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.toogle-eye {
    width: auto !important;
    color: #fff !important;
    padding: 7px !important;
    background: #366464;
    border: 0;
    border-radius: 4px;
}


}
.my-login-page .form-control {
    border-width: 2.3px;
}
.my-login-page .form-group label {
    width: 100%;
    text-align: right;
}
.my-login-page .btn.btn-block {
    padding: 12px 10px;
}
.my-login-page .footer {
    margin: 40px 0;
    color: #888;
    text-align: center;
}
@media screen and (max-width: 425px) {
    .my-login-page .card-wrapper {
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 320px) {
    .my-login-page .card.fat {
        padding: 0;
    }
    
    .my-login-page .card.fat .card-body {
        padding: 15px;
    }
}
.ap-otp-input {
    border: 2px solid #ebebeb;
    border-radius: 8px;
    height: 60px;
    width: 30px;
    margin: 4px;
    text-align: center;
    font-size: 28px;
    display: flex;
    flex: auto;
}
.ap-otp-input:focus {
    outline: none !important;
    border: 3px solid #1f6feb;
    transition: 0.12s ease-in;
}

/* countdown */
.countdown {
    display: block;
    width: 66vmin;
    height: 66vmin;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 25vmin;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: width, height, border-radius, font-size;
    transition-duration: 0.2s;
}
.countdown--ended {
    -webkit-animation: buzz 0.5s;
    animation: buzz 0.5s;
}
.countdown:active {
    transform: scale(1.02);
}
@-webkit-keyframes buzz {
    0% {
        transform: rotate(0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(6deg);
    }
    
    20%,
    40%,
    60%,
    80% {
        transform: rotate(-6deg);
    }
    
    100% {
        transform: rotate(0);
    }
}
@keyframes buzz {
    0% {
        transform: rotate(0);
    }
    
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(6deg);
    }
    
    20%,
    40%,
    60%,
    80% {
        transform: rotate(-6deg);
    }
    
    100% {
        transform: rotate(0);
    }
}
.countdown--wide {
    width: 100%;
    height: 100%;
    font-size: 50vmin;
    border-radius: 0;
}
.countdown__fill {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 1;
}
.countdown__digit {
    font-size: 18px
}
.countdown__buttons {
    position: absolute;
    right: 50px;
    top: 50%;
    height: 200px;
    margin-top: -100px;
    color: white;
    z-index: 1;
}
.countdown__button {
    height: 50%;
}
.full-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 1em 0.5em 0.5em 2em;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
}