    body {
      /* background-color: #f4efe4; */
      /* background-color: #d1c5c7; */
      background: url('./../images/logo.png') center center/cover no-repeat;
      min-height: 100vh;
      font-family: 'Segoe UI', sans-serif;
    }
    .loginOverlay{
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .login-wrapper {
      min-height: 100vh;
    }
    .login-box {
      max-width: 400px;
      margin: auto;
      /* padding: 40px 30px; */
      padding: 20px 30px;
      /* background-color: transparent; */
      background-color: #cecacae0;
      border-radius: 8px;
      text-align: center;
    }
    .logo {
      /* width: 80px; */
      /* width: 250px; */
      width: 200px;
      /* margin-bottom: 15px; */
    }
    .title {
      font-size: 1.8rem;
      font-weight: 700;
    }
    .desc {
      font-size: 0.95rem;
      color: #444;
    }
    .form-control {
      border-radius: 6px;
      padding: 12px;
    }
    .btn-continue {
      background-color: #c9471c;
      color: white;
      border-radius: 6px;
      padding: 10px;
      font-weight: 500;
    }
    .btn-continue:hover {
      background-color: #a83a14;
    }
    .divider {
      display: flex;
      align-items: center;
      margin: 30px 0;
      text-align: center;
    }
    .divider::before, .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #ccc;
    }
    .divider:not(:empty)::before {
      margin-right: .75em;
    }
    .divider:not(:empty)::after {
      margin-left: .75em;
    }
    .btn-social {
      border-radius: 30px;
      padding: 12px;
      font-weight: 500;
    }
    .btn-google {
      background-color: #fff;
      border: 1px solid #ddd;
    }
    .btn-apple {
      background-color: #fff;
      border: 1px solid #ddd;
    }
    .btn-social img {
      width: 20px;
      margin-right: 10px;
    }
    .terms {
      font-size: 0.85rem;
      color: #333;
      margin-top: 20px;
    }
    .terms a {
      color: #c9471c;
      text-decoration: none;
    }
    .terms a:hover {
      text-decoration: underline;
    }