﻿@font-face {
    font-family: 'AdobeCleanUXMedium';
    src: url('../fonts/adobe-clean-cufonfonts/AdobeCleanUXMedium.otf') format('opentype');
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'AdobeCleanUXMedium';
}
body.blurred::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /*Adds actual blur */
    z-index: 99999;
}

body.freeze-scroll {
    overflow: hidden; /* Prevents scrolling */
}

/*body.blurred::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  pointer-events: none;
    
}
.show{
    display:block!important;
}
.remove-show {
    display: none;
}
#loader{

}*/
.loader_Spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999 !important;
}



body.freeze-scroll {
    overflow: hidden;
}
#resend_otp{
    cursor:pointer;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /*overflow: hidden;*/
    /*    background: url("bg.png"), -webkit-linear-gradient(bottom, #0250c5, #F1C40F );*/
    background-image: url(/assets/images/bg_login.jpg);
    background-size: cover;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.10);
    backdrop-filter: blur(6px);
}
::selection {
    color: #fff;
    background: #F1C40F;
}

.container {
    width: 330px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 25px 35px 0px 35px;
    margin: 20px 0px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
/*.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}*/

    .container header {
        font-size: 35px;
        font-weight: 600;
        margin: 0 0 18px 0;
    }

    .container .form-outer {
        width: 100%;
        overflow: hidden;
    }

        .container .form-outer form {
            display: flex;
            width: 400%;
        }

.form-outer form .page {
    margin-top: 7px;
    width: 25%;
    transition: margin-left 0.3s ease-in-out;
}

    .form-outer form .page .title {
        text-align: left;
        font-size: 25px;
        font-weight: 500;
    }

    .form-outer form .page .field {
        width: 330px;
        height: 45px;
        margin: 28px 0px 0px 0px;
        display: flex;
        position: relative;
    }

form .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
}

form .page .field input {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
}

form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}

form .page .field button {
    width: 100%;
    height: calc(100% + 5px);
    border: none;
    background: #ff8150 !important;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}

    form .page .field button:hover {
        background: #000;
    }

form .page .btns button {
    margin-top: -20px !important;
}

    form .page .btns button.prev {
        margin-right: 3px;
        font-size: 17px;
    }

    form .page .btns button.next {
        margin-left: 3px;
    }

.container .progress-bar {
    display: flex;
    margin: 25px 0;
    user-select: none;
}
    .container .progress-bar .step {
        text-align: center;
        width: 100%;
        position: relative;
    }

        .container .progress-bar .step p {
            font-weight: 500;
            font-size: 9px;
            color: #000;
            margin-bottom: 8px;
        }

.progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #000;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
}

    .progress-bar .step .bullet.active {
        border-color: #F1C40F ;
        background: #F1C40F ;
    }

    .progress-bar .step .bullet span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .progress-bar .step .bullet.active span {
        display: none;
    }

    .progress-bar .step .bullet:before,
    .progress-bar .step .bullet:after {
        position: absolute;
        content: '';
        bottom: 11px;
        right: -84px;
        height: 3px;
        width: 83px;
        background: #262626;
    }
    

    .progress-bar .step .bullet.active:after {
        background: #F1C40F ;
        transform: scaleX(0);
        transform-origin: left;
        animation: animate 0.3s linear forwards;
    }

@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
    display: none;
}

.progress-bar .step p.active {
    color: #F1C40F ;
    transition: 0.2s linear;
}

.progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 65%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}

    .progress-bar .step .check.active {
        display: block;
        color: #fff;
    }
.floating-label {
    position: relative;
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    border-radius: 5px;
    outline: none;
    color: rgba(0, 0, 0, 0.5);
}
.floating-input, .floating-select {
    font-size: 14px !important;
    padding: 4px 0px 4px 4px;
    display: block;
    width: 98%;
    height: 36px;
    background-color: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}


    .floating-input:focus, .floating-select:focus {
        outline: none;
        border: 2px solid #ff693d;
    }

.labellb {
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 13px;
    color: #343C8E;
    background: #fff;
    border-radius: 5px;
    padding-right: 7px;
}

}

.floating-select:focus ~ label, .floating-select:not([value=""]):valid ~ label {
    top: -18px;
    font-size: 10px;
    color: #ff693d;
}

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
    width: 50%;
}

/**, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}*/

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

/* highlighter */
.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-input:focus ~ .highlight, .floating-select:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.labellb {
    color: rgba(0, 0, 0, 0.5);
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
