
    @font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-style: normal;
}

  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
         font-family: 'DMSans';
    }

    body {
        height: 100vh;
        width: 100%;
        background: url("../../assets/images/16.png") no-repeat center center/cover;
         display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        padding: 20px;
        color: white;
    }
    
     .top-offer-bar {
    background: #000;
    color: #ffc316;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}


    /* Top Logo */
    .logo {
        width: 180px;
    }

    /* Center Container */
    .age-wrapper {
        margin-top: 50px;
        margin-bottom: 50px;
        background: rgba(0, 0, 0, 0.55);
        padding: 30px;
        border-radius: 12px;
        width: 90%;
        max-width: 450px;
        text-align: center;
        backdrop-filter: blur(4px);
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: bold;
    }

    p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .label-row {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        margin-bottom: 5px;
    }

    .input-row {
        display: flex;
        gap: 10px;
    }

    .input-row input {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        border-radius: 6px;
        border: none;
        text-align: center;
    }

    .remember {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
    }

    #error-msg {
        margin-top: 10px;
        color: #ff4d4d;
        font-weight: bold;
        font-size: 0.95rem;
        display: none;
    }

    button {
        background: white;
        color: black;
        padding: 12px 30px;
        font-size: 1rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 20px;
        font-weight: bold;
    }

    button:hover {
        opacity: 0.9;
    }

    /* Mobile Responsive Adjustments */
    @media(max-width: 480px) {
        h1 { font-size: 1.5rem; }
        p { font-size: 1rem; }
        .logo { width: 200px; }
    }

    /* Privacy Policy */
    .privacy {
        position: absolute;
        bottom: 2vh;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        color: #ddd;
        z-index: 2;
    }
