body {
  width: 100vw;
  height: 100vh;
  background-image: url(../Images/back-auth2.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-boxes {
  background-color: var(--background-color-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-width: 400px;
  max-width: 600px;
  height: 100%;
  backdrop-filter: blur(2px);
  -webkit-box-shadow: -14px 2px 31px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -14px 2px 31px -10px rgba(0, 0, 0, 0.3);
  box-shadow: -14px 2px 31px -10px rgba(0, 0, 0, 0.3);
}

.input-with-icon {
  position: relative;
  width: 70%;
  padding-top: 25px;
}

.input-with-icon input {
  padding-right: 30px;
  /* Espaçamento à direita para o ícone */
  border: none;
  border-radius: 20px;
  width: 100%;
  padding: 7%;
  transition: 1s ease;
}

.input-with-icon input:focus {
  outline: 0;
  background-color: var(--color-logo-normal);
  -webkit-box-shadow: -4px 5px 29px 0px rgba(178, 131, 253, 0.84);
  -moz-box-shadow: -4px 5px 29px 0px rgba(178, 131, 253, 0.84);
  box-shadow: -4px 5px 29px 0px rgba(178, 131, 253, 0.84);
  color: white;
}

.input-with-icon input:focus::placeholder {
  color: white;
}

.input-with-icon .fa-user,
.input-with-icon .fa-lock {
  position: absolute;
  top: 50%;
  right: 10%;
  /* Posição do ícone */
  transform: translateY(10%);
  color: #d7d7d7;
}


.terms {
  font-size: 0.8em;
  padding: 0 5% 0 5%;
  display: inline-block;
}

.title {
  font-size: 3rem;
  font-weight: 800;
}

.login-boxes-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 5px;
}

.btn.btn-danger {
  background-color: orange;
  border: none;
}

.btn.btn-danger {
  background-color: var(--color-logo-normal);
  transition: 1s ease;
}

.btn-danger:hover.btn-danger:hover {
  background-color: #333;
  transition: 1s ease;
}

.logo-image {
  width: 35%;
  transition: opacity 0.3s ease;
}

.btn-login {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-login>button {
  flex-grow: 1;
  /* Ocupa 60% da área disponível */
  max-width: 70%;
  /* Defina o valor máximo desejado */
  border-radius: 20px;
  padding: 20px;
}

.terms-label {
  transform: translateY(-10%);
}

.terms-link {
  margin-left: 5px;
  text-decoration: none;
}


/* modal section */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#acceptButton {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}