:root{
    --blue: #0275d8;
    --theme: #050d52;
    --dark : #292b2c;
}

@font-face {
    font-family: eb;
    src: url(../fonts/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: sb;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: nm;
    src: url(../fonts/Poppins-Regular.ttf);
}

html{
    height: 100%;
}

body{
    padding: 0;
    margin: 0;
    background: var(--theme);
    color: #fff;
    font-family: nm;
    height: 100%;
    letter-spacing: 2.24px;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

.bx{
    vertical-align: middle;
    font-size: 1.25em;
}

.big{
    font-size: 3.75em;
    /* font-size: 40px; */
    line-height: 1.15em;
    padding: 10px 0;
}

.med{
    font-size: 2em;
    line-height: 1.25em;
    padding: 10px 0;
    font-family: nm;
}

.small{
    font-size: 1.25em;
    /* line-height: 1.5em; */
    /* padding: 20px 0; */
}




.container{
    /* margin: 50px auto; */
    /* border: 1pt solid red; */
    height: 100%;
    width: 50%;
    position: relative;
}

.container .header{
    /* border: 1pt solid red; */
    position: absolute;
    top: 0;
    left: 50%;
    width: fit-content;
    transform: translate(-50%);
}

.container .row .logo{
    display: block;
    height: 100%;
    width: 100%;
    padding: 20px;
}


.container .form{
    /* border: 1pt solid red; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}

.container .form-group{
    margin: 70px auto 20px auto;
    width: 75%;
}

.container .form-group .form{
    width: 75%;
    margin: 70px auto 20px auto;
}

.container .form-group input{
    padding: 5px 10px;
    font-size: 1.25em;
    text-transform: capitalize;
}

input:focus{
    outline: none !important;
    box-shadow: none !important;
}

.container .btn{
    width: 25% !important;
    transition: .3s;
}

.container .btn:hover{
    background-color: transparent;
    color: #fff;
}

.container .btn-grp{
    padding: 50px 0;
    /* border: 1pt solid red; */
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

}

.container .btn-grp .btn{
    margin: 0 20px;
    display: inline-block !important;
}

.container .btn-grp .btn:hover{
    background-color: #fff;
    color: initial;
}

.error{
    display: none;
}

.modal{}

.modal .modal-content{
    background: var(--theme);
    
}

.modal .btn-close{
}








/* input{
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5pt solid #fff !important;
    border-radius: 0 !important;
    font-size: 1.25em !important;
    padding: 0 !important;
    color: #fff !important;
}

input:focus{
    outline: none !important;
    box-shadow: none !important;
}

.wrapper{
    height: 100%;
}

.section{
    position: fixed;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: var(--theme);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.left{
    left: 0%;
}

.right{
    right: 0%;
}

.ctnt{
    font-family: sb;
    width: 80%;
    margin: 0 auto;
}

.ctnt .btn:hover{
    background-color: transparent;
    color: #fff;
}

.error{
    display: none;
} */