/* From Uiverse.io by micaelgomestavares */
.form {
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 25px 6px;
  width: 450px;
  border-radius: 20px;
  margin: 50px 0;
}

.error {
  margin-top: -5px;
  color: red;
  font-size: 13px;
}

.form button {
  align-self: flex-end;
}
.inputForm svg {
  width: 15px;
}
.flex-column > label {
  color: #151717;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0px;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 5px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
  margin-bottom: 7px;
}

.input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 10px 0 10px 0;
  background-color: var(--color-main);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
}
.button-submit:hover {
  background-color: #015694;
}
.p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}
.image-logo-login img {
  height: 65px;
}

.image-logo-login {
  text-align: center;
  margin-bottom: 13px;
}
.btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  border: 1px solid #2d79f3;
}
.box-form-login {
  display: flex;
  width: 80%;
  margin: 20px 0px;
  border-radius: 20px;
  overflow: auto;
  border: 1px solid #eee;
  align-items: center;
  background: #fafafa;
}

.images-login-form {
  width: 60%;
  display: block;
  height: 100%;
}

form.form.login-form {
  width: 40%;
  margin: unset;
  border-radius: unset;
  border: unset;
}

.images-login-form img {
  display: block;
  height: 100%;
}

@media(max-width:768px){
  .box-form-login {
    width: 100%;
    flex-wrap: wrap;
}
  .images-login-form img {
  	height:auto
  }

.images-login-form {
    width: 100%;
    height: unset;
}

form.form.login-form {
    width: 100%;
    padding: 9px 15px 6px;
}

.image-logo-login {
    margin-top: -40px;
}
}
