/* .forgotpass-pass-rec-header{
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
} */
.forgotpass-pass-tabs-ul {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.forgotpass-pass-tabs-ul li {
    width: 50%;
    float: left;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid white;
    padding: 5px;
}

.forgotpass-pass-tabs-ul li.active {
    background-color: #d8dbdd;
    color: #3158b4;
}

.forgotpass-pass-tabs-ul li.inactive {}

#forgotpass-pass-sms {
    display: none;
}

.fogot-pass-btn.hidden {
    display: none;
}

.resend {
    cursor: pointer;
    text-decoration: underline;
}

.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: relative;
    top: 50%;
    left: 50%;
    margin: 0 0 0 -15px;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: #93bfec;
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}