@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  transition: all .2s linear;
}


.status-message.success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
}

.status-message.error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}

.conta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  margin-bottom: -20px;
  min-height: fit-content;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  min-height: 100vh;
  width: calc(100vh - 90px);
}

.container form {
  padding: 20px;
  width: calc(700px - 90px);
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.container form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.container form .row .col {
  flex: 1 1 250px;
}

.container form .row .col .title {
  font-size: 20px;
  color: #333;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.container form .row .col .inputBox select {
  width: 100%;
  margin: 15px 0;
}

.container form .row .col .inputBox span,
select {
  margin-bottom: 10px;
  display: block;
}

iframe.CollectJSInlineIframe {
  height: 40px !important; /* or 22px if that’s the original */
  min-height: 22px !important;
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: none;
}

.container form .row .col .inputBox input,
select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: none;
}

.container form .row .col .inputBox input:focus,
select:focus {
  border: 1px solid #000;
}

.container form .row .col .flex {
  display: flex;
  gap: 15px;
  width: 100%;
}

.container form .row .col .flex .inputBox {
  flex: 1 1 450px;
  margin-top: 5px;
}

.container form .row .col .inputBox img {
  height: 34px;
  margin-top: 5px;
  filter: drop-shadow(0 0 1px #000);
}

.container form .submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 17px;
  background: #b10000;
  color: #fff;
  margin-top: 5px;
  cursor: pointer;
}

.container form .submit-btn:hover {
  background: #ff2b2b;
}

.modal .modal-content .submit-btn:hover {
  background: #ff2b2b;
}

.modal .modal-content .submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 17px;
  background: #b10000;
  color: #fff;
  margin-top: 5px;
  cursor: pointer;
}


/* Your existing styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.inputB input,
select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: none;
}

.inputB input:focus,
select:focus {
  border: 1px solid #000;
}

@media (max-width: 769px) {

  .container form .row .col .flex {
    display: block;
    gap: 15px;
    width: 100%;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 500px;
    margin: auto;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    max-height: 80vh;
    overflow-y: auto;
    box-sizing: border-box;
  }
}
