.container-form {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-content {
  width: 100%;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 60px 30px;
  text-align: center;
  border-radius: 25px;
  position: relative;
}

.form-content h1 {
  color: white;
  margin-bottom: 60px;
  position: relative;
}


.input-field {
  display: flex;
  align-items: center;
  background-color: #515966;
  margin: 15px 0;
  border-radius: 3px;
  transition: max-height 0.5s;
  overflow: hidden;
}

.input-field i {
  margin-left: 15px;
  color: #d13d49;
}

.grupo-input input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 10px 7px;
  color: white;
}

.grupo-input input::placeholder {
  color: white;
}

.forgot-pass {
  color: #515966;
  font-size: 0.7rem;
  text-align: left;
  display: block;
}

.link-text {
  color: #d13d49;
  margin-left: 10px;
  text-decoration: none;
}

.link-text:hover,
.forgot-pass:hover {
  color: white !important;
  cursor: pointer;
}

.btn-field {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-field button {
  margin: 30px 0 10px 0;
}

.account-text {
  display: inline;
  color: white;
  font-size: 0.9rem;
}

.gato-img {
  width: 100px;
  height: auto;
  position: absolute;
  top: -28px;
  right: -24px;
}

@media (max-width: 665px) {
  .gato-img {
    display: none;
  }

  .btn-field button {
    font-size: 0.9rem;
  }
}


/* Form contact */

.styled-select {
  display: flex;
  justify-content: start;
  width: 200px;
  padding: 3px 5px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 3px;
  background-color: #515966;
  color: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.styled-select:focus {
  border-color: #d13d49;
  ;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);
}

.checkbox-field {
  display: flex;
  color: white;
  width: 100%;
  margin: 15px 0;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  margin-right: 5.5rem;
}

.checkbox-field input {
  margin-right: 1rem;
}

label.error {
  color: white;
  font-size: 0.7em;
  margin-right: 2px;
}

.btn-field {
  display: block;
  left: 100;
}

.checkbox-field p {
  display: flex;
  text-align: left;
  margin: 0;
}

@media (max-width: 400px) {
  .checkbox-field p {
    font-size: 0.9em;
  }
}