@font-face {
  font-family: 'Roboto Thin';
  src: url("./fonts/Roboto-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Regular';
  src: url("./fonts/Roboto-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Medium';
  src: url("./fonts/Roboto-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #121212;
}
h1 {
  font-size: 2.4em;
}
h2 {
  font-size: 1.5em;
}
p {
  font-size: 1em;
}
.spacer {
  display: block;
  height: 25px;
}
h1,
h2,
p,
input {
  font-family: 'Roboto Medium';
  line-height: 120%;
}
@media screen and (max-width: 1250px) {
  h1,
  h2,
  p,
  input {
    font-family: 'Roboto Regular';
  }
}
@media screen and (max-width: 600px) {
  h1,
  h2,
  p,
  input {
    font-family: 'Roboto Thin';
  }
}
.header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.header .logo {
  width: 300px;
  margin-top: 50px;
}
.container {
  margin: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.container .form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 75vw;
  padding: 25px;
  background: #000000;
  color: #d7d7d7;
  border-radius: 4px;
  box-shadow: rgba(60, 66, 87, 0.12) 0px 7px 14px 0px, rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
}
.container .form-container .image {
  margin-top: 25px;
  width: 80%;
}
.container .form-container .form-about {
  margin: 25px;
  width: 80%;
}
.container .form-container form {
  width: 80%;
  margin-bottom: 50px;
}
.container .form-container form .form-input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3em;
}
.container .form-container form .form-input input {
  width: 300px;
  height: 55px;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 26px;
  letter-spacing: -0.32px;
  font-size: large;
  background: white;
  color: darkblue;
}
.container .form-container form .form-input .input:focus {
  outline: none !important;
  border: 1px solid deepskyblue;
  box-shadow: 0 0 2px skyblue;
}
.container .form-container form .form-input .input:active {
  border: 1px solid blue;
  background: skyblue;
}
.container .form-container form .form-input .input-number {
  width: 200px;
}
@media screen and (max-width: 850px) {
  .container .form-container form .form-input input,
  .container .form-container form .form-input .input-number {
    width: 100%;
  }
}
.container .form-container form .submit-btn {
  margin-top: 25px;
  background-color: #1a3c85;
  color: whitesmoke;
  border: none;
  font-size: 20px;
  cursor: pointer;
  width: 300px;
  height: 45px;
  border-radius: 10px;
  letter-spacing: -0.48px;
}
.container .form-container form .submit-btn a {
  text-decoration: none;
  color: white;
  font-size: large;
  font-weight: bold;
}
.container .form-container form .submit-btn:hover {
  transition: 0.7s ease-in-out;
  box-shadow: #26394d 0px 20px 30px -10px;
}
@media screen and (max-width: 850px) {
  .container .form-container form .submit-btn {
    width: 100%;
  }
}
.container .form-container .hidden {
  display: none;
  margin: 25px 0px;
  font-family: "Times New Roman";
  line-height: 4;
  font-size: large;
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */