.login-container {
  display: flex;
  min-height: 100vh;
}

.login-form {
  flex: 1;
  padding: 60px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-form form {
    width: 100%;
    max-width: 333px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.login-form label .required::after {
  top: 4px !important;
  margin-left: 0 !important;
}

.logo-ebc {
  width: 100%;
  max-width: 67px;
  height: auto;
  margin-bottom: 30px;
}

h2.subtitulo-login,
h1.titulo-login {
  font-size: 32px;
  color: #121214;
  line-height: 1.5;
}

h2.subtitulo-login {
  margin-bottom: 0;
  font-weight: 400;
}

h1.titulo-login {
  font-weight: 850;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
}

h3.chamada-login {
  font-weight: 400;
  font-size: 16px;
  color: #121214;
  margin-bottom: 30px;
  margin-top: 0;
}

.login-form form {
  padding-top: 30px;
  border-top: 1px solid #ddd;
  color: #121214;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 333px;
}

.footer p {
  font-size: 12px;
  margin: 0;
}

.footer .separador {
  width: 1px;
  height: 48px;
  background-color: #ddd;
}

.login-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e3394;
}

.login-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    min-height: calc(100svh);
    height: calc(100vh);
  }

  .login-image {
    display: none;
  }

  .login-form {
    padding: 40px 20px;
  }
}