.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.login-page .login-wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transform: translateY(-6vh);
}

@media (max-width: 760px) {
  .login-wrapper { transform: none; }
}  

.logo-panel {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
  min-height: 280px;
}
.logo-stack-large {
  position: relative;
  width: 360px;
  height: 140px;
}
.logo-circle-large {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: auto;
}
.logo-text-large {
  position: absolute;
  left: 80px;
  top: -8px;
  width: 240px;
  height: auto;
}

.interqu-logo {
  width: 360px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.divider {
  width: 1px;
  height: 200px;
  background: #d6d6d6;
  align-self: center;
  margin: 0 28px;
}

@media (max-width: 760px) {
  .divider { display: none; }
}

.form-panel {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(19,35,51,0.06);
}
.login-form {
  width: 320px;
}

.login-form input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 22px;
  border: 2px solid #f6b21a;
  outline: none;
  margin-bottom: 18px;
  font-size: 1em;
}
.login-form input::placeholder { color: #777; }
.login-form input:focus { box-shadow: 0 0 0 6px rgba(246,178,26,0.12); border-color: #f6b21a; }

.login-btn {
  display: block;
  width: 160px;
  margin: 10px auto 0;
  padding: 10px 20px;
  border-radius: 18px;
  background: #0b2740;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 120ms ease;
}

.login-btn:hover { 
    background-color: #092033; 
}

.login-btn:active { 
    background-color: #072229; 
}

.login-form .error { 
    color: #dc3545; margin-bottom: 8px; 
}

.login-aux { margin-top: 12px; text-align: center; font-size: 0.95em; }
.login-aux a { color: #0b2740; text-decoration: none; }

@media (max-width: 760px) {
  .login-wrapper { flex-direction: column; margin: 24px; }
  .divider { display: none; }
  .logo-panel, .form-panel { padding: 24px; }
  .logo-stack-large { width: 260px; height: 110px; }
  .logo-text-large { left: 72px; top: -6px; width: 180px; }
  .login-form { width: 100%; }
  .login-btn { width: 100%; }
}
