* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.content-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    background-image: url('../images/JW\ Black\ Label\ x\ Thot\ microsite-01.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}


#globalLoader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.logo-section img{
    width: 249px;
    height: 97px;
}

/* Form Styles */
form {
    margin-top: 8rem;
    width: 100%;
}

.form-group {
    position: relative;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid #E9A721;
    border-radius: 8px;
    color: #E9A721;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E9A721' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

select option {
    background: #000;
    color: #E9A721;
    padding: 10px;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
    color: #E9A721;
    opacity: 1;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: #E6C87E;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

input.error,
select.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    margin-left: 5px;
    min-height: 18px;
}

/* Question Section */
.question-section {
    margin: 0;
}

.question-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #E9A721;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    color: #fff;
    font-size: 11px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    min-width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #C9A961;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    max-width: 250px;
    padding: 15px 30px;
    background: url(../images/Rectangle\ 5.png) no-repeat center center;
    background-size: 100% 100%;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 15px auto;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #f4c858;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Upload Section */
.upload-group {
    margin-top: 40px;
    margin-bottom: 0;
}

.upload-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid #C9A961;
    border-radius: 8px;
    color: #C9A961;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label:hover {
    border-color: #E6C87E;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.upload-icon {
    font-size: 20px;
}

/* OTP Section */
.otp-section {
    margin-top: 0px;
}

/* Resend OTP Button */
.resend-btn {
    background: transparent;
    border: 1px solid #E9A721;
    color: #E9A721;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 10px auto;
    text-transform: uppercase;
}

.resend-btn:hover {
    background: #E9A721;
    color: #000;
}

/* Thank You Box */
.thankyou-box {
    background: url(../images/form-bg.png) no-repeat center center;
    background-size: 100% 100%;
    border-radius: 12px;
    padding: 60px 40px;
    margin: 0px 0;
    text-align: center;
    margin-top: 10rem;
}

.thankyou-text {
    color: #231F20;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 1.5px;
}

/* Footer Logo */
.footer-logo {
    text-align: right;
    margin-top: 60px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 30px 15px;
    }

    .logo-section {
        margin-bottom: 30px;
    }

    .question-text {
        font-size: 13px;
    }

    .radio-label,
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    .upload-label {
        font-size: 13px;
    }

    .checkbox-label {
        font-size: 10px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 12px 25px;
    }

    .resend-btn {
        font-size: 11px;
        padding: 6px 15px;
    }

    .thankyou-box {
        padding: 40px 30px;
        /* margin: 60px 0; */
    }

    .thankyou-text {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .thankyou-box {
        padding: 50px 20px;
    }

    .thankyou-text {
        font-size: 14px;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    animation: fadeIn 0.6s ease-out;
}