@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;700&display=swap');
*{
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}
:root{
  --bg-1:#64bf4c;
  --bg-2:#024364;
}

section{
    display: flex;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
}

.section__login{
  background-image: url('../images/infina-quiz.jpg');
  background-position: text-outline: ;
  background-size: cover;
      position: relative;
}
section.section__login::before {
    content: '';
    position: ABSOLUTE;
    top: 0;
    left: 0;
    background-color: #e0e0e0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .85;
}

.section__login .banner{
  position: relative;z-index: 2;
}
div{
    display: flex;
}
.banner{
    /* background-color: #e6e6e6; */
    background-color: white;
    min-height: 70vh;
  display: flex;
  min-width: 40%;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 36px #c0baba;
    padding: 40px 0px;
}

.logo{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
}
.logo img{
  width: 150px;
}

.banner__inner{
  display: flex;
flex-direction: column;
padding: 20px;
width: 75%;
}

.space{
    padding-left: 10px;
    margin-bottom: 1rem;
}

.button{
    /* margin-top: 20px; */
    background-color: var(--bg-2);
    /* max-width: 337px; */
    width: 100%;
    color: white;
    border: none;
    margin-bottom: 16px;
}

input:not([type="radio"]){
    /* width: 320px; */
    height: 40px;
    display: inline-block;
    font-size: 12px;

}
h1{
    text-align: center;
    padding-bottom: 20px;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-1);
    margin-top: 1rem;
}

a{
    text-decoration: none;
    font-size: 14px;
    position: relative;
    color: #254eab;;
    margin:2px;
}

.forgot::before{
    content: "Forgot ";
    color: #484444;
}
span{
  font-size: 14px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
/* .create::before{
    content: "" ;
    color: #484444;
} */

.gender, .gender__inner{
  display: flex;
flex-direction: row;
align-items: baseline;
}
.gender__inner{
  flex-grow: 1;
  justify-content: flex-start;
  align-items: center;
}
.gender__inner label{
  margin-right: 6px;
}

input[type="radio"]
{
  width: 18px;
height: 18px;
}

[data-show="0"]
{
  display: none;
}
[data-show="1"]
{
  display: block;
}
.message{
  /* color:red; */
  font-size: 13px;
  text-align: center;
  margin-bottom: 6px;
  margin-top: 3px;
}
