* {
  font-family: 'Inter', sans-serif;
}

/* Wrapper */
.login-wrapper {
  display: flex;
  min-height: 80vh;
  background: #1aa19f;
}

/* LEFT */
.login-left {
  flex: 1;
  padding: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-box {
  background: #fff;
  color: #000;
  padding: 18px 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
}

.illustration img {
  max-width: 320px;
  margin: 40px 0;
}

.verified-box {
  margin-top: auto;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  font-weight: 500;
}

/* RIGHT */
.login-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */
.login-card {
  background: #fff;
  width: 420px;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.login-icon {
  width: 120px;
  margin-bottom: 20px;
}

.login-card h3 {
  font-weight: 700;
}

.login-card p {
  margin-bottom: 25px;
}

/* FORM */
.login-card label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 6px;
}

.login-card label span {
  color: red;
}

.login-card input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.login-card input.is-invalid {
  border-color: red;
}

.error-text {
  color: red;
  font-size: 13px;
  text-align: left;
  margin-bottom: 10px;
}

.login-card button {
  width: 100%;
  background: #1aa19f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  transition: 0.3s;
}

.login-card button:hover {
  background: #148c8a;
}

.terms {
  font-size: 13px;
  margin-top: 20px;
}

.terms a {
  color: #1aa19f;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-left {
    display: none;
  }
}

#loginBtn {
    width: 100%;
    background: #1aa19f;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 20px;
}

.otp-box {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
}

.otp-box:focus {
    border-color: #1aa19f;
    box-shadow: 0 0 0 2px rgba(26,161,159,0.25);
}
.header-social-links {
  display: flex;
  align-items: center;
}

/* ===== HEADER PROFILE BUTTON ===== */
.header-profile{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 12px;
    background:#f2fdfc;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.25s ease;
}

.header-profile:hover{
    background:#e6f7f6;
    box-shadow:0 6px 15px rgba(26,161,159,.25);
}

/* Avatar */
.hp-avatar{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#1aa19f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

/* Name */
.hp-name{
    font-size:14px;
    white-space:nowrap;
}

/* Arrow */
.hp-icon{
    font-size:13px;
    color:#1aa19f;
}

/* Mobile tweak */
@media(max-width:768px){
    .hp-name{ display:none; }
}
