/* ===== GLOBAL ===== */
body {
    min-height: 100vh;
    margin: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* ===== HEADER ===== */
.login-header {
    position: absolute;
    top: 20px;
    left: 40px;
}

.login-header img {
    height: 80px;
    cursor: pointer;
}

/* ===== CARD ===== */
.auth-container {
    width: 100%;
    max-width: 480px;
    background: #fff;
    padding: 44px 38px;
    border-radius: 8px;
}

/* ===== TITLES ===== */
.auth-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

/* ===== FORMS ===== */
.form-label {
    font-size: 15px;
    font-weight: 600;
}

.form-control {
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-control:focus {
    border-color: #ff5a4e;
    box-shadow: none;
}

/* ===== PASSWORD ===== */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 60%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

/* ===== BUTTON ===== */
.btn-primary {
    width: 100%;
    margin-top: 22px;
    background: #ff5a4e;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #e94a40;
}

/* ===== TEXT LINKS ===== */
.auth-links {
    text-align: center;
    font-size: 14px;
    margin-top: 18px;
}

.auth-links a {
    color: #0073e6;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ===== ALERT ===== */
.alert {
    font-size: 14px;
    border-radius: 6px;
}
/* ===== AUTH CHOICE PAGE ===== */
.auth-choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #ff5a4e;
  color: #ff5a4e;
  background: transparent;
  transition: all .2s ease;
}

.auth-choice-btn i {
  font-size: 20px;
}

.auth-choice-btn:hover {
  background: #ff5a4e;
  color: #fff;
}

/* secondary */
.auth-choice-btn.secondary {
  border-color: #6c757d;
  color: #6c757d;
}

.auth-choice-btn.secondary:hover {
  background: #6c757d;
  color: #fff;
}

/* success */
.auth-choice-btn.success {
  border-color: #198754;
  color: #198754;
}

.auth-choice-btn.success:hover {
  background: #198754;
  color: #fff;
}


/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .login-header {
        left: 20px;
        top: 16px;
    }

    .login-header img {
        height: 64px;
    }

    .auth-container {
        padding: 36px 24px;
    }
}
