/*Starting INDEX STYLES 269 */
    /* Reset some default styling */
    body, html {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #000000;
        position: relative; /* Required for positioning the pseudo-element */
        overflow: hidden; /* Prevent scrolling on the body */
    }

    /* Pseudo-element for background image with opacity */
    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('bg.jpg'); /* Set your background image */
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        opacity: 0.50; /* Adjust opacity of the image */
        z-index: -1; /* Ensure the image stays behind the content */
        animation: zoomBackground 25s ease-in-out infinite;
        filter: blur(2.5px);
    }

.bottom-center {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



.container {
    display: flex;
    width: 400px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}


   
    /* Right Panel */
    .right-panel {
        flex: 1;
        padding: 0 20px 20px 20px; /* Remove padding from the top */
        background-color: rgba(255, 255, 255, 0.125); /* Semi-transparent white */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center the content vertically */
        align-items: center; /* Center the content horizontally */
        backdrop-filter: blur(2.5px); /* Apply glass effect */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add depth with shadow */

    }


    /* Right Panel Heading */
    .right-panel h2 {
        margin: 0; /* Remove margin */
        align-self: center; /* Center the heading horizontally */
        color: #cc992b; /* Ensure text is readable against the background */
        padding: 25px; /* Add padding for better aesthetics */
        text-align: center; /* Center the text inside the heading */
        justify-content: top; /* Center vertically */
        padding-bottom: 0px;
    }


    /* Center the form vertically and horizontally */
    form {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: left; /* Center horizontally */
        justify-content: center; /* Center vertically */
        flex-grow: 1; /* Fill remaining space in the panel */
    }

    form div {
        margin-bottom: 15px;
        width: 80%; /* Adjust width for consistent horizontal alignment */
    }

    label {
        margin-bottom: 5px;
        display: block;
        font-size: 14px;
    }

    input {
        width: 120%;
        padding: 8px;
        border: none; /* Remove all borders */
        border-bottom: 1px solid #cc992b; /* Only bottom border */
        background-color: transparent; /* Transparent background */
        border-radius: 0; /* Remove rounding since only bottom border */
        font-size: 14px;
        outline: none; /* Optional: removes blue outline on focus */
        color: #fff;
    }
    
    input:focus {
        outline: none; /* Remove default focus outline if desired */
    }


    button {
        width: 100%; /* Match button width with input fields */
        background-color: #cc992b;
        color: #000;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        height: 12%;
        align-self: center;
        /* Smooth transition for hover effect */
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
        display: flex; /* Use flexbox */
        justify-content: center; /* Horizontally align text */
        align-items: center; /* Vertically align text */
        text-align: center; /* Ensure text alignment */
        margin-top: 20px;

    }

   button:hover {
    background-color: #b68927; /* Darker hover background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
    font-weight: bold;
}

    .buttondemo {
        width: 20%; /* Match button width with input fields */
        padding: 10px;
        background-color: #cc992b;
        color: #000;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        height: 5%;
        align-self: right;
        /* Smooth transition for hover effect */
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
    }

    

    .buttondemo:hover {
    background-color: #b68927; /* Darker hover background color */
    transform: scale(1.1); /* Slightly increase the size (zoom) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
    font-weight: bold;
    }

    /* Help Text */
    .help-text {
        margin-top: 10px; /* Add spacing above the text */
        text-align: center;
        font-size: 12px;
        margin-bottom: 0px;
    }

    .help-text a {
        color: #cc992b; /* Match link color with the theme */
        text-decoration: none; /* Remove underline */
    }

    .help-text a:hover {
        text-decoration: underline; /* Add underline on hover for clarity */
        color: #b68927; /* Match link color with the theme */
    }


    /* Define the keyframes for zooming in and out */
    @keyframes zoomBackground {
        0% {
            transform: scale(1); /* Start at normal size */
        }
        50% {
            transform: scale(1.2); /* Slight zoom-in */
        }
        100% {
            transform: scale(1); /* Back to normal size */
        }
    }

    /* Social media icons container */
    .social-media-icons {
        position: absolute;
        bottom: 20px; /* Distance from the bottom of the panel */
        right: 20px; /* Distance from the right of the panel */
        display: flex; /* Use flexbox to align icons side by side */
        gap: 10px; /* Space between icons */
    }

    /* Style for each social media icon */
    .social-icon {
        width: 30px; /* Set icon width */
        height: 30px; /* Set icon height */
        object-fit: cover; /* Ensure icons fit perfectly within the bounds */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
        cursor: pointer; /* Change cursor to pointer on hover */
    }

    /* Hover effect for the icons */
    .social-icon:hover {
        transform: scale(1.2); /* Slightly increase the size */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add shadow effect */
    }

    /* Active (click) effect for the icons */
    .social-icon:active {
        transform: scale(1.1); /* Slightly reduce size on click */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Reduce shadow on click */
    }
/*Ending INDEX STYLES 1 */
/*Starting Guidelines STYLES 415 */
    #guide-body {
        margin: 0;
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #000000; /* Black background */
        overflow: hidden;
    }

    /* Guide Container Styling */
    #guide-container {
        background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add depth with shadow */
        backdrop-filter: blur(5px); /* Glass effect */
        -webkit-backdrop-filter: blur(5px); /* Safari support */
        padding: 20px;
        width: 70%;
        height: 65%;
        color: #fff; /* White text */
        display: flex; /* Use flexbox for alignment */
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the top */
    }

    /* Title Styling */
    #guide-title {
        position: absolute; /* Position title relative to container */
        top: 0; /* Align to the top */
        left: 0; /* Align to the left */
        width: 100%; /* Match container's width */
        margin: 0; /* Remove margin */
        background-color: #cc992b; /* Add background color */
        color: rgb(0, 0, 0); /* Ensure text is readable against the background */
        text-align: center; /* Center text inside the title */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
        border-top-left-radius: 15px; /* Rounded top-left corner */
        border-top-right-radius: 15px; /* Rounded top-right corner */
        border-bottom-left-radius: 0; /* Ensure bottom corners remain square */
        border-bottom-right-radius: 0;
        font-size: 24px;
        height: 50px; /* Adjust height as needed */
        line-height: 50px; /* Vertically center text inside the element */
    }

    /* Text Styling */
    #guide-text {
        font-size: 16px;
        margin: 0;
    }

    #guide-list {
        font-size: 16px;
        color: #000000;
        line-height: 1.8;
        padding-left: 20px; /* Add padding to the left for better alignment */
        padding-top: 40px; /* Add padding to the left for better alignment */
    }
    
    #guide-list li {
        margin-bottom: 15px; /* Spacing between items */
        position: relative;
    }
    
    /* Adding a custom bullet to the list items */
    #guide-list li::before {
        color: #cc992b;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 18px;
    }

    .hover-word {
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .hover-word:hover {
        color: #cc992b;
    }

    /* Create a flex container to align both the label and checkbox on the same line */
    .checkbox-container {
        display: flex;
        justify-content: flex-start;   /* Aligns the items to the left */
        align-items: center;           /* Centers them vertically */
        margin-top: 20px;               /* Optional: Adds space above */
        color: #000;                   /* Sets text color */
        font-weight: bold;             /* Makes the text bold */
    }

    /* Optional: Add some spacing between the label and checkbox */
    .checkbox-container label {
        padding-top: 05px;
        margin-left: 10px;             /* Adjusts space between label and checkbox */
        margin-top: 0;                 /* Ensures the label isn't shifted vertically */
    }

    /* Increase the size of the checkbox */
    #agree-checkbox {
        appearance: none;             /* Removes default checkbox appearance */
        width: 20px;                  /* Set the width */
        height: 20px;                 /* Set the height */
        border: 2px solid #cc992b;    /* Border color set to #cc992b */
        border-radius: 4px;           /* Optional: Rounds the corners for a softer look */
        background-color: white;      /* Sets the background color to white */
        position: relative;           /* Positioning for the checkmark */
    }

    /* Style for the checked state of the checkbox */
    #agree-checkbox:checked {
        background-color: #cc992b;    /* Background color when checked */
        border-color: #cc992b;        /* Ensures border color matches the background */
    }

    /* Add checkmark inside the checkbox when checked */
    #agree-checkbox:checked::before {
        content: '✔';                 /* Adds a checkmark symbol */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Centers the checkmark inside the box */
        color: rgb(0, 0, 0);                 /* White color for the checkmark */
        font-size: 16px;              /* Adjust size of the checkmark */
    }


    /* Style the "Continue" button */
    #continue-btn {
        background-color: #cc992b;    /* Button background color */
        color: rgb(0, 0, 0);                 /* Text color */
        border: none;                 /* No border */
        border-radius: 5px;           /* Rounded corners */
        font-size: 16px;              /* Font size */
        cursor: pointer;             /* Cursor changes to pointer on hover */
        margin-top: 40px;             /* Space above the button */
        width: 20%;
        height: 6.5%;
    }

    /* Button hover effect */
    #continue-btn:hover {
          background-color: #b68927; /* Darker hover background color */
    }

    /* Disabled button styling */
    #continue-btn:disabled {
        background-color: #ccc;       /* Grey color for disabled state */
        cursor: not-allowed;          /* Change cursor to not-allowed */
        pointer-events: none;
    }



    


