@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

*{
    margin: 0px;
    padding: 0px;
/*    color: black;*/
    font-family: "Poppins";
}

.hero{
    min-height: 100vh;
    width: 100%;
    background: #F8C013;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.layer{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sign-in{
    position: absolute;
    top: 0px;
    width: 434px;
    height: 469px;
    top: -21px;
    z-index: 3;
    right: 21px;
    background-color: #FAFAFA;
}


.signin-shadow{
    position: absolute;
    content: "";
    width: 430px;
    height: 469px;
    background-color: #990202;
    padding: 0;
}

.footer-content{
    position: absolute;
    bottom: 35px;
    display: flex;
    align-items: center;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.header-logo{
    margin-top: 43px;
    margin-bottom: 10px;
}

.inputs{
    margin-bottom: 1rem;
}

.sigin-in-form{
    margin-top: 1rem;
}

/* input{
    height: 50px;
    width: 326px;
    left: 0px;
    top: 0px;
    border-radius: 5px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0.2px 0.2px 0.1px 0.1px #990202;
    transition: transform 330ms ease-in-out;
} */


input{
    width: 326px;
    height: 50px;
    border-color: #f5dede;
    border-radius: 5px;
    border-width: 0.2px;
    border-style: solid;
    margin-bottom: 0px;
    padding: 0 2rem;
    background: #FAFAFA;
    
}




::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-weight: bold;
    color: rgba(0, 0, 0, 0.28);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-weight: bold;
    color: rgba(0, 0, 0, 0.28);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    font-weight: bold;
    color: rgba(0, 0, 0, 0.28);
  }


#header-text{
    font-weight: bold !important;
    font-size: 24px;
}

#mini-text{
    font-weight: bold;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

#forgot-password{
    margin-top: -5px;
    font-size: 10px;
    color: #990202;
}

#footer-text{
    margin-left: 1rem;
    position: relative;
    top: 6px;
}

/* #alt-email{
    position: relative;
    border-style: solid;
    border-width: 1px;
    border-color: #990202;
} */


.small-div{
    visibility: hidden;
    position: relative;
    text-align: center;
    margin-left: 70px;
    top: 10px;
    height: 21px;
    width: 89px;
    font-family: "Poppins";
    font-size: 10px;
    color: #990202;
    font-weight: 5px;
    padding-top: 4px;
    background: #FAFAFA;
    z-index: 9;

}

.smalldiv{
    position: relative;
    text-align: center;
    margin-left: 70px;
    top: 5px;
    height: 10px;
    width: 70px;
    font-family: "Poppins";
    font-size: 10px;
    color: #990202;
    font-weight: 5px;
    padding: 0;
    background: #FAFAFA;
    z-index: 9;

}


button{
    width: 326px;
    height: 50px;
    background-color: #990202;
    font-weight: bold;
    border: 0px;
    color: #ffffff;
    border-width: 1px;
    box-sizing: border-box;
    padding: 0 2rem;
    transition: transform 330ms ease-in-out;
}

.alt-div{
    align-items: center;
}



/* START RESPONSIVENESS */
@media screen and (max-width: 600px){
    .layer{
        height: 100vh;
        width: 100%;
    }

    .signin-shadow{
        width: 300px;
        height: 400px;
        /* height: 269px; */
        background-color: #990202;
    }

    .sign-in{
        position: absolute;
        width: 300px;
        height: 400px;
        top: -7px;
        z-index: 3;
        right: 7px;
        background-color: #FAFAFA;
    }

    .header-logo{
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .sigin-in-form{
        margin-top: 0;
    }
    


    #header-text{
        font-weight: bold !important;
        font-size: 20px;
    }

    #mini-text{
        margin-bottom: 10px !important;
    }


    #mini-text{
        font-weight: bold;
        font-size: 9px;
        color: rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
    }

    input{
        width: 250px;
        height: 45px;        
        padding: 0 1rem;
    }

    button{        
        width: 250px;
        height: 45px;        
    }
    

    
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-weight: bold;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.28);
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-weight: bold;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.28);
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    font-weight: bold;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.28);
  }
}

/* END RESPONSIVENESS */