@import "https://fonts.googleapis.com/css2?family=Montserrat&display=swap";
body {
  background-color: var(--body-bg-color);
  font-family: Montserrat;
}

:root {
  --body-bg-color: #f6f6f6;
  --background-color: #f14521;
  --black: #000;
  --white: #fff;
  --btn-focus: #07263a;
  --btn-hover: #ff6544;
  --text-color: #233d7b;
}

.logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.logo h3 {
  text-align: center;
  color: var(--white);
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
}

.form {
  width: 100%;
}

.form-section .top-section h1 {
  color: var(--text-color);
  margin-top: 59px;
  font-size: 35px;
  font-weight: 500;
}

.form-section .top-section span {
  color: var(--background-color);
}

.form-section {
  padding: 10px 50px;
}

.form-section .form-input input {
  opacity: .6;
}

.form-section .form-input label {
  color: var(--black);
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
}

.form-section .form-input span {
  color: var(--background-color);
}

.form-section .second-input input {
  opacity: .6;
}

.form-section .second-input label {
  color: var(--black);
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
}

.field-icon {
  float: right;
  z-index: 2;
  color: #727272b2;
  margin-top: -25px;
  margin-left: -25px;
  margin-right: 50px;
  position: relative;
}

form i {
  cursor: pointer;
  margin-left: -30px;
}

.form-section input:focus {
  box-shadow: none;
}

.form-section .forgot a {
  float: right;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.form-section button {
  color: var(--white);
  background-color: var(--background-color);
  border: none;
  margin-top: 30px;
  padding: 10px 80px;
  font-size: 18px;
  font-weight: 500;
}

.form-section button:hover {
  background-color: var(--btn-hover);
}

.form-section button:focus {
  background-color: var(--btn-focus);
}

@media only screen and (width <= 600px) {
  .logo h3 {
    font-size: 18px;
  }

  .form-section {
    padding: 10px 20px;
  }

  .form-section .top-section h1 {
    margin-top: 39px;
    font-size: 20px;
  }

  .form-section .form-input label {
    margin-top: 20px;
    font-size: 16px;
  }

  .form-section .second-input label {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media only screen and (width >= 280px) and (width <= 305px) {
  .form-section {
    padding: 5px 15px;
  }

  .form-section .top-section h1 {
    margin-top: 25px;
    font-size: 18px;
  }

  .form-section .form-input label {
    margin-top: 20px;
    font-size: 14px;
  }

  .form-section .second-input label {
    margin-top: 10px;
    font-size: 14px;
  }
}

.form-section .form-input .form-control:focus, .form-section .second-input .form-control:focus {
  border-color: var(--background-color);
}

@media only screen and (width <= 768px) {
  .logo img {
    display: none;
  }

  .logo {
    height: 100px;
  }
}
/*# sourceMappingURL=build.e860e76f.css.map */
