/* Importando Morvin Bootstrap */

@import url(/assets/ui3-935972bee94e035e2b75d9f2235e249da9e125d7a118ef19bc0f44c12c04ecf1.css);

.container {
  min-width: 100%;
}

.col-md-6.short-input {
  max-width: 300px;
}

.container-form {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  width: 100%;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
  height: 100vh;
}

.form-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-size: cover;
  position: relative;

  background-image: url(/assets/ui3/title-img-777789caa69be2ede4f1d64cb9dd2760443e73a4fae2e5380bdaa15f50142da9.png);
  background-size: cover;
  background-position: center;
}

.form-image img {
  max-height: 100vh;
  max-width: 100%;
}

/* Formulário */
.form-content {
  flex: 2;
  padding: 60px;
  border-radius: 12px;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Título */
h2 {
  font-size: 28px;
  font-weight: bold;
  color: #343a40;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Estilos dos campos */
.form-control {
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
}

/* Botões */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  padding: 10px 20px;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Ícones dentro dos inputs */
.input-group-text {
  background: #0d6efd;
  color: white;
  border-radius: 8px 0 0 8px;
}

/* Validações */
.invalid-feedback {
  color: red;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  .container-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;

  }

  .form-image {
    width: 100%;
  }

  .form-content {
    width: 100%;
    padding: 30px;
    border-radius: 0 0 10px 10px;
  }

  .form-control {
    font-size: 16px;
    padding: 14px;
  }
}

@media screen and (max-width: 992px) {
  .form-label {
    font-size: 18px;
    font-weight: bold;
  }

  .row.g-3>div {
    width: 100%;
    margin-bottom: 12px;
  }

  .form-control {
    font-size: 16px;
    padding: 14px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 14px;
    width: 100%;
  }

  .d-flex.justify-content-between {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-secondary {
    flex: 1;
    min-width: 120px;
  }

  .btn-primary {
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .container-form {
    flex-direction: column;
  }

  .col-md-6,
  .col-md-4 {
    width: 100%;
  }

  .d-flex.justify-content-between {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin-top: 10px;
  }
}
}
