body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    align-items: center;
}

.login-title {
  margin-top: 50px;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-container {
    padding: 20px;
    width: 100%;
    text-align: center;
}
.logo-container {
    margin-bottom: 30px;
}
.logo-container img {
    max-width: 230px;
    height: auto;
    /*border-radius: 8px;*/
}
h1 {
    color: #343a40;
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-google, .btn-guest, .btn-guest-new {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-google {
    background-color: #fff;
    color: #3A3A3A;
    border: 1px solid #9A9A9A;
}

.btn-google:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-google img {
  width: 22px;
}

.btn-guest {
    background-color: #F5A726;
    color: #fff;
    border: 1px solid #F5A726;
}

.btn-guest:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-guest-new {
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
}

.btn-guest-new:hover {
    color: #fff;
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.separator-line {
  margin-bottom: 10px;
}

.footer {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    color: #929292;
    margin-top: auto;
}
.footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.footer a {
    color: #F5A726;
    text-decoration: none;
    font-weight: 500;
}
.footer a:hover {
    text-decoration: underline;
}
.registration-page-wrapper {
      background-color: #ffffff;
      border: 5px solid #add8e6;
      border-radius: 20px;
      width: 100%;
      max-width: 500px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
  }

  .form-header {
      background-color: #F5A726;
      color: #ffffff;
      padding: 35px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-bottom-left-radius: 20px !important;
      border-bottom-right-radius: 20px !important;
  }

  .form-header h1 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 600;
      text-align: center;
      flex-grow: 1;
  }

  .form-header .back-arrow {
      position: absolute;
      left: 20px;
      color: #ffffff;
      font-size: 1.5rem;
      cursor: pointer;
  }
  .form-header .back-arrow:hover {
      opacity: 0.8;
  }

  .form-card {
      padding: 30px;
      background-color: #ffffff;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: #343a40;
  }

  .form-group .form-control,
  .form-group .form-select {
    border: 1px solid #F8F9F9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    color: #9A9A9A;
    background-color: #F8F9F9;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }

  .form-group .form-control:focus,
  .form-group .form-select:focus {
      border-color: #80bdff;
      box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
      background-color: #ffffff;
      outline: 0;
  }

  .form-group textarea.form-control {
      min-height: 100px;
      resize: vertical;
  }

  .register-btn {
      background-color: #F5A726;
      color: #ffffff;
      border: none;
      padding: 15px 25px;
      border-radius: 10px;
      font-size: 1.2rem;
      font-weight: 600;
      width: 100%;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
  }

  .register-btn:hover {
      background-color: #F5A726;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
  }

  @media (max-width: 1024px){
            .login-container {
    padding: 60px;
}
        }

  @media (max-width: 768px){
            .login-container {
    padding: 60px;
}
        }

  @media (max-width: 576px) {
    .registration-page-wrapper {
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    .form-header {
        border-radius: 0;
    }
    .form-card {
        padding: 20px;
    }
    .form-header h1 {
        font-size: 1.3rem;
    }
    .form-header .back-arrow {
        left: 15px;
    }
    .form-group .form-control,
    .form-group .form-select {
        padding: 15px 12px;
    }
    .register-btn {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .login-container {
    padding: 40px;
}
.login-title{
    font-size: 22px;
    line-height: 32px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.logo-container img{
    max-width: 150px;
}
  }

  .form-header i {
    color: #fff;
  }

  .form-header h1 {
      font-size: 18px;
      color: #fff;
  }

  .scan-page-wrapper {
            background-color: #ffffff;
            border: 5px solid #add8e6; /* Light blue border */
            border-radius: 20px; /* Rounded corners for the entire page */
            width: 100%;
            max-width: 500px; /* Max width for a mobile-like container */
            margin: 20px auto; /* Center the wrapper and add some margin */
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            flex-grow: 1; /* Allow wrapper to take available space */
            display: flex;
            flex-direction: column;
        }

        /* Header Styling (Orange Bar) */
        .scan-header {
            background-color: #ffa500; /* Orange color */
            color: #ffffff;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .scan-header h1 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            flex-grow: 1;
        }

        .scan-header .back-arrow {
            position: absolute;
            left: 20px;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .scan-header .back-arrow:hover {
            opacity: 0.8;
        }

        /* Main Content Area */
        .scan-main-content {
            padding: 25px;
            flex-grow: 1; /* Allow content to expand */
        }

        /* Card Styling for QR and Input sections */
        .scan-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Lighter shadow than login */
            padding: 30px;
            /* margin-bottom: 25px;  */
            text-align: center;
            margin-top: 30px;
        }

        .scan-card h2 {
            font-size: 1.3rem;
            color: #343a40;
            margin-bottom: 25px;
            font-weight: 600;
        }

        /* QR Code Section */
        .qr-code-section img {
            max-width: 200px; /* Size of the QR code image */
            height: auto;
            border: 3px solid #ffa500; /* Orange border around QR */
            border-radius: 10px; /* Rounded corners for QR image */
            padding: 5px;
            margin-bottom: 25px;
        }

        .btn-scan-qr {
            background-color: #dc3545; /* Red button */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .btn-scan-qr:hover {
            background-color: #c82333; /* Darker red on hover */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        /* "Or" Separator */
        .or-separator {
            text-align: center;
            margin: 25px 0;
            font-size: 1.1rem;
            color: #6c757d;
            position: relative;
        }
        .or-separator::before,
        .or-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background-color: #dee2e6;
        }
        .or-separator::before {
            left: 0;
        }
        .or-separator::after {
            right: 0;
        }

        /* Enter Card Number Section */
        .card-input-group {
            margin-bottom: 25px;
        }
        .card-input-group .form-control {
            border: 1px solid #ced4da;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            background-color: #f8f9fa;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
            width: 100%; /* Ensure input takes full width */
        }
        .card-input-group .form-control:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
            background-color: #ffffff;
            outline: 0;
        }

        .btn-submit-card {
            background-color: #dc3545; /* Red button */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            width: 100%; /* Full width button */
            transition: all 0.3s ease;
        }
        .btn-submit-card:hover {
            background-color: #c82333; /* Darker red on hover */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        /* Bottom Navigation Bar */
        .bottom-nav {
            background-color: #ffffff;
            border-top: 1px solid #e0e0e0;
            padding: 10px 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
        }

        .nav-item {
            text-align: center;
            color: #6c757d; /* Default icon color */
            font-size: 0.8rem;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 5px;
            flex: 1; /* Distribute space evenly */
        }

        .nav-item i {
            font-size: 1.5rem; /* Icon size */
            margin-bottom: 5px;
            color: #6c757d; /* Default icon color */
        }

        .nav-item.active {
            color: #ffa500; /* Active orange color */
        }
        .nav-item.active i {
            color: #ffa500; /* Active orange color for icon */
        }
        .nav-item:hover {
            color: #ffa500; /* Hover effect */
        }
        .nav-item:hover i {
            color: #ffa500; /* Hover effect for icon */
        }


        /* Responsive adjustments */
        @media (max-width: 576px) {
            .scan-page-wrapper {
                margin: 0;
                border-radius: 0;
                border: none;
                box-shadow: none;
            }
            .scan-header {
                border-radius: 0;
            }
            .scan-main-content {
                padding: 15px;
            }
            .scan-card {
                padding: 20px;
            }
            .scan-header h1 {
                font-size: 1.3rem;
            }
            .scan-header .back-arrow {
                left: 15px;
            }
            .qr-code-section img {
                max-width: 180px;
            }
            .btn-scan-qr, .btn-submit-card {
                font-size: 1rem;
                padding: 10px 20px;
            }
            .nav-item {
                font-size: 0.75rem;
            }
            .nav-item i {
                font-size: 1.3rem;
            }
        }

        .complete-page-wrapper {
            background-color: #ffffff;
            border: 5px solid #add8e6; /* Light blue border */
            border-radius: 20px; /* Rounded corners for the entire page */
            width: 100%;
            max-width: 500px; /* Max width for a mobile-like container */
            margin: 20px auto; /* Center the wrapper and add some margin */
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
            display: block;
            flex-direction: column;
        }

        /* Header Styling (Orange Bar) */
        .complete-header {
            background-color: #ffa500; /* Orange color */
            color: #ffffff;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        .complete-header h1 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            flex-grow: 1;
        }

        .complete-header .back-arrow {
            position: absolute;
            left: 20px;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .complete-header .back-arrow:hover {
            opacity: 0.8;
        }

        /* Main Content Area */
        .complete-main-content {
            padding: 25px;
            text-align: center;
            flex-grow: 1;
        }

        /* Checkmark Icon and Image */
        .success-icon-container {
            margin-bottom: 30px;
            margin-top: 40px;
        }
        .success-icon-container img {
            max-width: 180px; /* Adjust size of the combined image */
            height: auto;
        }

        /* Registration Complete Title */
        .complete-main-content h2 {
            font-size: 1.8rem;
            color: #343a40;
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* Dummy Content Paragraph */
        .complete-main-content p {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            padding: 0 15px; /* Add some horizontal padding */
        }

        /* Download Card Section */
        .download-card-section {
            background-size: cover;
            background-position: center;
            color: #ffffff; /* White text for contrast */
            padding: 25px;
            border-radius: 15px;
            margin: 0 15px 30px 15px; /* Margin around the card */
            text-align: left;
            position: relative;
            overflow: hidden; /* Ensure content stays within rounded corners */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow for the card */
        }

        /* Overlay for better text readability on background image */
        .download-card-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); /* Gradient overlay */
            z-index: 1;
        }

        .card-details {
            position: relative;
            z-index: 2; /* Ensure text is above the overlay */
        }

        .card-details p {
            margin-bottom: 8px;
            font-size: 1.1rem;
            font-weight: 400;
        }
        .card-details p strong {
            font-weight: 600;
            margin-right: 5px;
        }
        .card-details .card-id {
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 15px;
            color: #ffd700; /* Gold-like color for ID */
        }

        /* Edit Details Button on Card */
        .card-edit-btn {
            background-color: #dc3545; /* Red button */
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 2;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .card-edit-btn:hover {
            background-color: #c82333;
            transform: translateY(-1px);
        }


        /* Done Button */
        .done-btn {
            background-color: #ffa500; /* Orange color */
            color: #ffffff;
            border: none;
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            width: calc(100% - 30px); /* Full width minus side padding */
            max-width: 300px; /* Max width for the button */
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
            margin-bottom: 25px; /* Spacing from bottom */
        }

        .done-btn:hover {
            background-color: #e69500; /* Darker orange on hover */
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .complete-page-wrapper {
                margin: 0;
                border-radius: 0;
                border: none;
                box-shadow: none;
            }
            .complete-header {
                border-radius: 0;
            }
            .complete-main-content {
                padding: 15px;
            }
            .complete-header h1 {
                font-size: 1.3rem;
            }
            .complete-header .back-arrow {
                left: 15px;
            }
            .success-icon-container img {
                max-width: 150px;
            }
            .complete-main-content h2 {
                font-size: 1.5rem;
            }
            .complete-main-content p {
                font-size: 0.95rem;
                padding: 0 10px;
            }
            .download-card-section {
                margin: 0 10px 25px 10px;
                padding: 30px 20px;
            }
            .card-details p {
                font-size: 1rem;
                margin-bottom: 3px;
                color: #dcdcdc;
            }
            .card-details .card-id {
                font-size: 1.1rem;
            }
            .card-edit-btn {
                bottom: 15px;
                right: 15px;
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            .done-btn {
                font-size: 1.1rem;
                padding: 12px 20px;
                width: calc(100% - 20px);
            }
        }

/* custom css  */
.form-group .form-control:focus, .form-group .form-select:focus {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 0.25rem #f8f9fa;
}

.small-footer {
    font-size: 12px; /* Smaller font size */
    flex-wrap: nowrap !important; /* Prevent wrapping on mobile */
    overflow-x: auto; /* Allow scrolling if needed */
    white-space: nowrap;
    gap: 1rem;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* member card  */

.card-container {
    background-image: url('/member/assets/images/card.png');
    width: 100%;
    border-radius: 12px;
    background-size: contain;
    background-position: center;
    color: white;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    aspect-ratio: 85.6 / 53.98;
}

.card-overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

.details-section {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
}

.details-section .code {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px 0;
    padding-left: 0;
}

.details-section .name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: white !important;
}

.details-section .mobile {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
    padding-left: 0;
    color: white !important;
}

.code-center-left {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.code {
    font-size: 16px;
    font-weight: bold;
    color: white !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    margin-top: 30px;
}

.store-btn{
    background-color: #1a1203f2; /* Orange color */
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    width: calc(100% - 30px); /* Full width minus side padding */
    max-width: 300px; /* Max width for the button */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    margin-bottom: 25px;
}

@media (min-width: 575px) {

.main-content {
    width: 575px;
    margin-left: auto;
    margin-right: auto;
}


}

b{
    color:#e69500
}

.new-bg{
    background-color: #F1AE1D;
}
