@import url(./color.css);

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    line-height: 1.7;
}
body{
    font-family: Verdana, sans-serif;
    font-size: 15px;
    color: #000;
    position: relative;
    min-height: 100vh ;
    
}
.page-wrapper {
    max-width: 1020px ;
    margin: 0 auto ;
}
a{
    text-decoration: none;
    color: inherit;
}
.bg-container img{
    min-height: 100%;
    
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0 !important;
    left: 0;
    z-index: -1;
}
.bg-container::after{
    position: absolute;
    content: '\00a0';
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0 !important;
    background: black;
    opacity: .5;
    z-index: -1;
    

}
body .bg-img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: absolute;

}

.flex-center{
    display: flex;
    align-content: center !important;
    justify-content: center !important;
    gap: .7rem;
    flex-wrap: wrap;
}
.flex-betwn{
    display: flex;
    align-content: center !important;
    justify-content: space-between !important;
    gap: .7rem;
    flex-wrap: wrap;
}
.hide{
    display: none !important;
}
.form-container{
    gap: 15rem !important;
    padding: 2rem;
}
.form-container .form{
    background: var(--fade_white);
    width: 25rem;
    padding: 2rem;
    border-radius: .3rem;
}
.form-container .form h4{
    color: #747474;
    font-size: .7rem;

}
.form-container .form h2{
    padding: .3rem 0 0rem;
}
.form-container .form .socials{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    
}
.form-container .form .or{
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
    color: #4b4b4b;
}
.form-container .form .or::after{
    width: 43%;
    top: 52%;
    right: 0;
    position: absolute;
    height: 1px;
    margin-left: .4rem;
    background:var(--fair_grey);
    content: '\00a0';
}
.form-container .form .or::before{
    width: 43%;
    top: 52%;
    left: 0;
    position: absolute;
    height: 1px;
    margin-right: .4rem;
    background:  var(--fair_grey);
    content: '\00a0';
}

.form-container .form p.signup{
    font-size: .8rem;
    font-weight: bold;
}
.form-container .form p.already{
    font-size: .8rem;
}
.form-container .form p.already a{
    color: var(--deep_blue);
}
.form-container form{
    font-size: .8rem;
    margin: 1.2rem 0;
}
.form-container form .input{
    margin-bottom: 1rem;
}
.form-container form .input label{
    display: block;
}
.form-container form .input input, select{
    width: 100%;
    height: 1.4rem;
    background: inherit;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--deep_blue_hover);
}
.form-container form .input span{
    font-size: .6rem;
    color: var(--light_danger);
}

.form-container form .btn{
    background: var(--deep_blue_hover);
    text-align: center;
    color: var(--fade_white);
    padding: .4rem .7rem;
    margin: 2rem 0;
    user-select: none;
    cursor: pointer;
    transition: all ease .5s;
    border-radius: .3rem;

}
.form-container form .btn:hover{
    background: var(--deep_blue);
}
.terms{
    font-size: .6rem;
    line-height: 1;
}
.eye{
    position: absolute;
    right: 0;
    cursor: pointer;
}

input[type='submit']{
    outline: none;
    background: var(--deep_blue_hover);
    text-align: center;
    color: var(--fade_white);
    width: 100%;
    margin: 1rem 0 .4rem;
    padding: .4rem .8rem;
    user-select: none;
    cursor: pointer;
    transition: all ease .5s;
    border-radius: .3rem;
    border: none;
}

/* ////// SIGN IN //////// */
/* ////// SIGN IN //////// */
/* ////// SIGN IN //////// */
.contd-with{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.contd-with .option{
    transition: all ease .5s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    padding: .5rem;
    gap: .5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    cursor: pointer;
    box-shadow: 0 3px 12px -1px #d3d3d3;
    color: #2b2929;
    font-size: .8rem;
}
.contd-with a:nth-child(2){
    background: var(--deep_blue_hover);
    color: var(--fade_white);
}

.contd-with .option:hover{
    transform: scale(1.05);
}

/* ////// SIGN IN //////// */
/* ////// SIGN IN //////// */
/* ////// SIGN IN //////// */
/* ////// MODAL //////// */
/* ////// MODAL //////// */

.modal-overlay::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    content: '\0a00';
    background: rgb(0, 0, 0);
    z-index: 2;
    opacity: .4;
}
.modal-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    content: '\0a00';
    z-index: 3;
}
.modal-container .modal-wrap{
    width: 30rem;
    border: 1px solid;
    background: var(--fade_white);
    padding: 1rem;
    position: relative;
    color: var(--vnav_col);
    
    z-index: 100;
}

.btn{
    outline: none;
    border: none;
    background: var(--deep_blue_hover);
    color: var(--fade_white);
    border-radius: .4rem;
    padding: .4rem 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;

}

/* ////// MODAL //////// */
/* ////// MODAL //////// */


@media screen and (max-width: 870px){
    .form-container{
        gap: 1rem !important;
        padding: 2rem;
    }
}

@media screen and (max-width: 600px){
    .form-container .form {
      width: 90%;
     
    }
}
@media screen and (max-width: 394px){
    body{
     
        font-size: 10px;
     
     
        
    }
}