@import url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
}

  
body{
    background: url(pexels-keira-burton-6146978.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container {
    width: 600px;
    height: 450px;
    place-items: center;
    line-height: 1.5;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.185);
    margin: 20px;
}



.headie {
    color: #fff;
    text-transform: uppercase;
}

p {
    color: #fff;
    font-size: 12px;
}

.icon {
    font-size: 50px;
    color: #fff;
    text-align: center;
}

input {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 3px;
  font-family: Montserrat;
}

input {
    border: 2px solid #DADDEC;
    margin: 5px 0 10px;
    font-size: 1rem;
    color: #656880;
  }

  .form_container {
height:100vh;
width:100%;
display:flex;
justify-content:center;
align-items: center;
  }

  .w-50{
      width:50%;
  }
   .w-30{
      width:30%;
  }
  .mx-auto{
      margin-left:auto;
      margin-right: auto;
  }
  .d-flex{
      display: flex;
  }
  .items-center{
      align-items: center;
  }
  .mb-4{
      margin-bottom: 2rem;
  }
   .mb-1{
      margin-bottom: .5rem;
  }

  .w-100 {
    font-family: Montserrat;
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
          -webkit-tap-highlight-color: transparent;
          
  }
  
  button {
      width: 150px;
      height: 50px;
      cursor: pointer;
      font-size: 15px;
      font-weight: bold;
      color: black;
      background: white;
      border: 2px solid black;
      box-shadow: 5px 5px 0 black,
          -5px -5px 0 black,
          -5px 5px 0 black,
          5px -5px 0 black;
      transition: 500ms ease-in-out;
  }
  
  button:hover {
      box-shadow: 20px 5px 0 #15032b, -20px -5px 0 #15032b;
  }
  
  button:focus {
      outline: none;
  }