*{
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    background-color: rgb(33, 33, 33);
    font-family: 'Montserrat-regular';
}


.bannieres{
    height: 100vh;
    width: 100vw;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* From Uiverse.io by Praashoo7 */ 
.form {
    width:300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 0.4em;
    background-color: #171717;
    border-radius: 25px;
    transition: .4s ease-in-out;
  }
  
  #heading {
    text-align: center;
    margin: 2em;
    color: rgb(255, 255, 255);
    font-size: 1.2em;
  }
  
  .field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 25px;
    padding: 0.6em;
    border: none;
    outline: none;
    color: white;
    background-color: #171717;
    box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
  }
  
  .input-icon {
    height: 1.3em;
    width: 1.3em;
    fill: white;
  }
  
  .input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #d3d3d3;
  }
  
  .form .btn {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 2.5em;
  }
  
  .button1 {
    padding: 0.5em;
    padding-left: 1.1em;
    padding-right: 1.1em;
    border-radius: 5px;
    margin-right: 0.5em;
    border: none;
    outline: none;
    transition: .4s ease-in-out;
    background-color: #252525;
    color: white;
  }
  
  .button1:hover {
    background-color: rgb(12, 142, 47);
    color: white;
  }
  
  .button2 {
    padding: 0.5em;
    padding-left: 2.3em;
    padding-right: 2.3em;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .4s ease-in-out;
    background-color: #252525;
    color: white;
  }
  
  .button2:hover {
    background-color: rgb(25, 71, 197);
    color: white;
  }

  .button2 a{
    color: white;
    text-decoration: none;
  }
  
  .button3 {
    margin-bottom: 3em;
    padding: 0.5em;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .4s ease-in-out;
    background-color: #252525;
    color: white;
  }
  
  .button3:hover {
    background-color: red;
    color: white;
  }

  .button4 {
    padding: 0.5em;
    padding-left: 2.3em;
    padding-right: 2.3em;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .4s ease-in-out;
    background-color: #252525;
    color: white;
    margin:20px;
  }
    
  .button4:hover {
    background-color: rgb(25, 71, 197);
    color: white;
  }
  .button4 a{
    color: white;
    text-decoration: none;
  }

  p{
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 10px;
  }

  p a{
    color: rgb(67, 106, 211);
  }

  label{
    color: white;
    font-size: 10px;
  }

  .error{
    color: rgb(196, 100, 100);
    font-size: 14px;
    background-color: rgb(49, 49, 49);
    margin-top: 10px;
   border-radius: 10px;
  }