/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background-color: #000;
  }

.side-image{
    position: relative;
}

.hello-img{
    position: absolute;
    width: 150px;
    height: 150px;
    left: 300px;
    top: 0;
}

.avatar-img{
 height: 700px;
   
}
.row{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width:  100%;
  background-color: #000;
}

.right{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

form{
  width: 100%;
  color: #fff;
  background-color: #000;
  min-height: 100%
}

form header{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}
.input-field{ 
    position: relative;
    padding: 0 10px 0 10px;
}
input[type="text"],
  input[type="email"],
  input[type="number"],
  select,textarea,
  button {
    height: 45px;
    width: 100%;
    background: #fff;
    border: none;
    border: 1px solid #c6008b;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}

.input-radio{
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: start;
}

.input-radio p{
  margin-left: 10px;
  display: block;
  font-weight: bold;
}

.input-radio label{
  margin-bottom: 5px;
}

input[type="radio"] {
  color: #40414a;
  margin-left: 25px;
}

.radio-input:checked{
 background-color: #c6008b;
}

form .input-field label{
    position: absolute;
    top: 10px;
    left: 15px;
    pointer-events: none;
    transition: .5s;
    color: #000;
}
.input-field input:focus ~ label
   {
    top: -10px;
    font-size: 13px;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 10px;
    background: #fff;
  }
  .input-field input:valid ~ label
  {
   top: -10px;
   font-size: 13px;
  font-weight: bold;
  
   padding: 0 5px;
   background: #fff;
 }
 .input-field .input:focus, .input-field .input:valid{
    border-bottom: 1px solid #000;
    
 }
 .submit{
    width: 100%;
    border: none;
    outline: none;
    height: 45px;
    margin-top: 20px;
    background: #c6008b;
    border-radius: 5px;
    transition: .4s;
 }
 .submit:hover{
    background: rgb(255, 0, 183);
    color: #fff;
 }

 @media only screen and (max-width: 840px){
  .side-image{
    display: none;
  }
  .row{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .right{
    position: relative;
    min-width: 100%;
    height: 100vh;
    padding: 0;
  }

  form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
 }

 @media only screen and (max-width: 480px){
  .row{
    padding: 20px 10px;
  }

  .right{
    min-height: 100vh;
  }

  form{
    gap: 5px;
  }

  form header{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
 }

 @media only screen and (max-width: 344px){
  .row{
    padding: 0;
  }

  .right{
    min-height: 100vh;
  }

  form{
    gap: .5px;
  }

  form header{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }

  
 }
