


@font-face {
  font-family: poppins-extrabold;
  src: url('../Fonts/Poppins-ExtraBold.woff');
}

@font-face {
  font-family: poppins-light;
  src: url('../Fonts/Poppins-Light.woff');
}

@font-face {
  font-family: poppins-bold;
  src: url('../Fonts/Poppins-Bold.woff');
}

@font-face {
  font-family: poppins-medium;
  src: url('../Fonts/Poppins-Medium.woff');
}
#map_form {
  top: 0;
  bottom: 0;
  width: 300px;
  height : 300px;
}


* , *:before , *:after {
    margin: 0;
    padding: 0;
    font-family: inherit;
    box-sizing: border-box;
  }
  #main {
    width: max-content;
    margin: 60px auto;
    font-family: "poppins-light" , sans-serif;
    padding: 25px 28px;
    background: #151414;
    border-radius: 8px;
    border: 1px solid #302d2d;
    animation: popup 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  }
  @keyframes popup {
    0% {
      transform: scale(0.2);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .acces {
    vertical-align: middle;
    font-size: 24px;
    font-weight: 400;
    color: #e7e7e7;
  }

  .input_parent {
    display: block;
    margin-bottom: 20px;
  }
 label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #a4a4a4;
  }
input {
    padding: 10px 8px;
    width: 100%;
    font-size: 16px;
    background: #323131;
    border: none;
    color: #c7c7c7;
    border-radius: 4px;
    outline: none;
    transition: all 0.2s ease;
  }
input:hover {
    background: #404040;
  }
input:focus {
    box-shadow: 0px 0px 0px 1px #0069b4;
  }

p  {
    color: rgb(202, 4, 4);
    padding: 10px 0px 0px 0px;
    font-size: 14px; 
}  
  button {
    padding: 10px 18px;
    font-size: 20px;
    background: #0069b4;
    width: 100%;
    border: none;
    border-radius: 4px;
    color: #f4f4f4;
    transition: all 0.2s ease;
  }
  button:hover {
    background: #00a3e2;
  }
  button:focus {
    box-shadow: 0px 0px 0px 3px black;
  }

  img{
    vertical-align: middle;
}

  html {
    height: 100%;
  }
  body {
    background: #0069b4;
    background: -moz-linear-gradient(-90deg,  #0069b4 1%, #00a3e2 100%);
    background: -webkit-linear-gradient(-90deg,  #0069b4 1%,#00a3e2 100%);
    background: linear-gradient(90deg,  #0069b4 1%,#00a3e2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0069b4', endColorstr='#00a3e2',GradientType=1 );    
  }