@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background-color: #111111bd;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}
.modal--show {
  opacity: 1;
  pointer-events: unset;
}
.modal_container {
  margin: auto;
  width: 90%;
  max-width: 500px;
  padding: 10px 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  display: grid;
  grid-auto-columns: 100%;
  place-items: center;
  border-radius: 9px;
  background: #7f9bff;
  z-index: 1;
}
.title_modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.text_modal {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  font-family: Inter;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.description_modal {
  color: #fff;
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 127.273% */
  letter-spacing: -0.242px;
}
.container_inputs {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
input {
  text-decoration: none;
  display: flex;
  height: 45px;
  padding: 0px 16px;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  border: none;
}
.solicita {
  display: flex;
  height: 56px;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  align-self: stretch;
  border-radius: 8px;
  background: #1b0088;
  color: white;
  border: none;
  cursor: pointer;
}
.solicita:hover{
    background: #3e15e0;
}
.close_modal{
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
form{
  margin: auto;
}