/* ===========================
   PREFIX: mhc-
   =========================== */

* {
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.mhc-app {
    overflow: hidden;
    background: #114782;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    background-image: url('../../Image/Backgrounds/Cluster-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mhc-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .32;
}

.mhc-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: .18;
}

.mhc-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 10;
}

.mhc-title {
  text-align: center;
  margin-bottom: 8px;
  color: white;
}

.mhc-title img {
  width: 38px;
  margin-bottom: 4px;
}

.mhc-title h1 {
  font-size: 19px;
  font-weight: 700;
}
.mhc-title p{
      font-size:13px;
      opacity:.7;
      margin-top:2px;
    }

.mhc-card {
  background: rgba(255,255,255,.96);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.mhc-card h2 {
  color: #143B67;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2px;
}

.mhc-card p {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 10px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 3px;
  display: block;
}

.mhc-input {
  width: 100%;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #D8E1EA;
  font-size: 14px;
  height: 30px;
  transition: .2s;
}

.mhc-input:focus {
  outline: none;
  border-color: #16508F;
  box-shadow: 0 0 0 3px rgba(22,80,143,.10);
}

.mhc-forgot {
  text-align: right;
  margin-top: 2px;
}

.mhc-forgot a {
  font-size: 12px;
  color: #16508F;
  text-decoration: none;
}

.mhc-checkbox-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.mhc-otp-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 3px;
  color: #334155;
}

.mhc-otp-header button {
  background: none;
  border: none;
  font-size: 12px;
  color: #16508F;
  cursor: pointer;
}

.mhc-otp-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 3px;
  color: #94a3b8;
}

.mhc-btn {
  width: 100%;
  background: #16508F;
  color: white;
  padding: 7px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  height: 30px;
  transition: .2s;
}

.mhc-btn:hover {
  background: #123f71;
}

.mhc-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 13px;
}

.mhc-footer a {
  color: #64748b;
  text-decoration: none;
}

.mhc-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.mhc-powered {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mhc-powered span {
  font-size: 13px;
  color: #D8E1EA;
}

.mhc-powered img {
  width: 55px;
  transition: transform .25s ease;
}

.mhc-powered img:hover {
  transform: scale(1.08);
}
.mhc-checkbox-row span {
    font-size: 13px;
    color: #475569;
}