@font-face {
  font-family: Roboto-regular;
  src: url(/Resources/Roboto-Regular.ttf);
}

@font-face {
  font-family: Roboto-bold;
  src: url(/Resources/Roboto-Bold.ttf);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #36384d;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: row;
  padding: 25px;
  background-color: #fff;
  border-radius: 35px;
  width: 65%;
  margin: 10px;
  align-items: center;
}

.desktop {
  width: 450px;
}

.mobile {
  display: none;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 40px;
  margin-top: 15px;
  gap: 30px;
}

.content h1 {
  font-family: Roboto-bold;
  font-family: 600;
  font-size: 58px;
  margin: 0;
  color: #36384d;
}

.content p {
  font-family: Roboto-regular;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: #36384d;
}

.items {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.items div {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.items div img {
  width: 23px;
}

.items div p {
  color: #36384d;
}

form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  width: 90%;
}

form div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#emailError {
  font-family: Roboto-bold;
  font-family: 700;
  font-size: 12px;
  color: red;
}

label {
  font-family: Roboto-bold;
  font-family: 700;
  font-size: 12px;
  color: #36384d;
}

input {
  width: 100%;
  font-family: Roboto-regular;
  padding: 20px 0;
  font-size: 16px;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  margin-bottom: 10px;
  text-indent: 5%;
  color: #36384d;
}

button {
  width: 100%;
  font-family: Roboto-bold;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  padding: 20px 40px;
  background-color: #36384d;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  border: 0;
}

button:hover {
  cursor: pointer;
  background-image: linear-gradient(to right, #ff5474, #ff6742);
  z-index: 999;
  box-shadow: 1px 1px 20px 1px #ff5e5b;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 82%;
  }
}

@media screen and (max-width: 992px){
  body {
    display: flex;flex-direction: column;
    align-items: center;
  }

  .container {
    width: 90%;
    align-self: center;
    margin: 25% 0;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 12px;
  }

  button {
    font-size: 10px;
  }

  .desktop {
    width: 350px;
  }
}

@media screen and (max-width: 480px) {
  body {
    margin: 0;
    padding: 0;
    background-color: #fff;
  }

  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .mobile {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .mobile img {
    width: 100%;
  }

  .desktop {
    display: none;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    margin: 30px;
    margin-top: 40px;
  }

  .content h1 {
    font-size: 42px;
  }

  .content p {
    font-size: 16px;
  }

  .items div {
    align-items: start;
  }

  input {
    padding: 15px 0;
    font-size: 14px;
  }

  button {
    padding: 20px 30px;
    font-size: 14px;
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  button {
    font-size: 12px;
    padding: 10px 20px;
  }
}
