.modal {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation: animatetop 0.4s ease;
  border-radius: 10px;
}
.modal-content .close {
  color: #0071b8;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal-content .close:hover, .modal-content .close:focus {
  color: #02b2f1;
  text-decoration: none;
}
.modal-content .modal-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #0071b8;
}
.modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-content .modal-body label {
  font-size: 1rem;
  font-weight: bold;
  color: #2A454A;
}
.modal-content .modal-body input,
.modal-content .modal-body textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}
.modal-content .modal-body input:focus,
.modal-content .modal-body textarea:focus {
  outline: none;
  border-color: #0071b8;
}
.modal-content .modal-body textarea {
  resize: none;
  height: 100px;
}
.modal-content .modal-footer {
  margin-top: 20px;
  text-align: center;
}
.modal-content .modal-footer button {
  padding: 10px 20px;
  background-color: #0071b8;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}
.modal-content .modal-footer button:hover {
  background-color: #02b2f1;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 560px) {
  .modal-content {
    margin: 0 15px;
  }
}

/*# sourceMappingURL=modalContato.css.map */
