.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  box-shadow: 0px 0px 6px 0px rgba(240, 88, 3, 0.51);
  -webkit-box-shadow: 0px 0px 6px 0px rgba(240, 88, 3, 0.51);
  -moz-box-shadow: 0px 0px 6px 0px rgba(240, 88, 3, 0.51);
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #334f7f;
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #2b4a81;
}

.message,
.signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline #3963ad;
}

.signin a {
  color: #2b4a81;
}

.flex {
  display: flex;
  width: 100%;
  gap: 1px;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 10px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  color: #2b4a81;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: 0.3s ease;
  background-color: #2b4a81;
}

.submit:hover {
  background-color: #3a64ad;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.h-100vh {
  height: 100vh;
}
.bg-boleiro {
  height: 100vh;
  background-image: url("../../images/bg1.jpg");
}
.img-escudo {
  width: 64px;
  height: 64px;
}
.success-field{
    color: #57c60d;
    border: 1px solid #57c60d!important ;
}

.error-field {
    color: rgb(234, 88, 88) !important;
    border: 1px solid rgb(234, 88, 88) !important;
    
}

span.error-message {
    color: rgb(234, 88, 88) !important;
}
span.text-white{
    font-size: 13px;
}