* {
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: #1A1A19;
}

.topnav {
  font-family: 'Poppins', sans-serif;
  background-color: #1A1A19;
  color: #A25D34;
}

.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  background-color: #1A1A19;
  color: #A25D34;
}

.topnav a:hover {
  text-decoration: line-through;
  color: #D0A380;
}

.topnav .icon {
  display: none;
}

.formholder {
  display: -ms-grid;
  display: grid;
  padding: 60px;
  width: 60%;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
      grid-template-areas: "form sidebar";
}

.form {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: form;
  background-color: #E0E4E7;
  padding: 30px;
  text-align: left;
}

label {
  background-color: #E0E4E7;
  color: #1A1A19;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input {
  background-color: #E0E4E7;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-radius: 0px;
  border-bottom: 2px solid #1A1A19;
  width: 300px;
  padding: 10px;
  background-color: #E0E4E7;
  outline: none;
}

input:hover {
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-radius: 0px;
  border-bottom: 2px solid #A25D34;
  background-color: #E0E4E7;
}

input:focus {
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-radius: 0px;
  border-bottom: 2px solid #A25D34;
  background-color: #E0E4E7;
}

input:active {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 2px solid #A25D34;
  background-color: #E0E4E7;
}

input[type=submit] {
  border: 2px solid #1A1A19;
  background-color: #1A1A19;
  color: #E0E4E7;
  width: 200px;
}

input[type=submit]:hover {
  border: 2px solid #A25D34;
  background-color: #A25D34;
}

.sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: sidebar;
  background-color: #A25D34;
}

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .formholder {
    display: -ms-grid;
    display: grid;
    padding: 30px;
    width: 80%;
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: 2fr 0.5fr;
        grid-template-rows: 2fr 0.5fr;
        grid-template-areas: "form"
 "sidebar";
  }
  input {
    width: 180px;
  }
}
/*# sourceMappingURL=styles.css.map */
