/* SNES Leave Tracker — DepEd UIS-inspired authentication pages */
html,
body {
  min-height: 100%;
}

body {
  color: #333333;
  background: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

.deped-login-navbar {
  position: fixed;
  z-index: 1030;
  top: 0;
  right: 0;
  left: 0;
  min-height: 50px;
  background: #f8f8f8;
  border-bottom: 1px solid #e7e7e7;
}

.deped-login-navbar-inner {
  width: min(1170px, calc(100% - 30px));
  min-height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777777;
  font-size: 18px;
  font-weight: 400;
}

.deped-login-navbar img {
  width: auto;
  height: 22px;
  max-width: 46px;
  object-fit: contain;
}

.login-shell {
  min-height: 100vh;
  padding: 85px 15px 40px;
  display: block;
}

.login-card,
.register-card {
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.register-card {
  width: min(600px, 100%);
}

.login-seal {
  width: 68px;
  height: 68px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
}

.login-eyebrow {
  margin: 0 0 4px;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

h1 {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.login-copy {
  margin: 10px 0 20px;
  color: #777777;
  line-height: 1.42857143;
  text-align: center;
}

.login-form {
  gap: 15px;
}

.login-form label {
  gap: 5px;
  color: #333333;
  font-weight: 700;
}

.login-form input {
  min-height: 34px;
  padding: 6px 12px;
  color: #555555;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.login-form input:focus {
  outline: 0;
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.login-form button,
.register-today-button {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 400;
  line-height: 1.42857143;
}

.login-form button {
  color: #ffffff;
  background: #337ab7;
  border: 1px solid #2e6da4;
}

.login-form button:hover {
  background: #286090;
  border-color: #204d74;
}

.register-today-button {
  color: #333333;
  background: #ffffff;
  border: 1px solid #cccccc;
}

.register-today-button:hover {
  color: #333333;
  background: #e6e6e6;
  border-color: #adadad;
}

.login-secondary-link {
  color: #777777;
}

.login-message {
  color: #a94442;
}

.success-message {
  color: #3c763d !important;
}

@media (max-width: 767px) {
  .deped-login-navbar {
    position: static;
  }
  .login-shell {
    min-height: calc(100vh - 50px);
    padding-top: 25px;
  }
}
