@charset "UTF-8";
/* CSS Document */

/* global-all-css.css */

/* Bootstrap 4 */
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css');

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Select2 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css');

/* Other external libraries */
@import url('https://cdn.jsdelivr.net/npm/pannellum@2.5.6/build/pannellum.css');

/* Custom styles */
@import url('styles.css');
@import url('animate.css');
@import url('horoscopes.css');

/* ====================== 
   STARTING HEADER CSS 
====================== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #ffffff; /* Set body background to pure white */
}

#boldandtrendy-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-start; /* Align items at the top */
    height: 235px; /* Set height of the header */
    padding: 10px;
    background-color: rgba(255, 255, 255, 0); /* Start transparent */
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure it's above all other content */
}

#boldandtrendy-header.solid {
    background-color: white; /* Solid white when active */
}
.jewellery {
    text-align: center; /* Center text */
    margin: 0; /* Remove default margin */
    font-family: 'Montserrat', sans-serif; /* Font for jewellery */
    font-weight: 700; /* Bold weight */
    font-size: 3em; /* Increased font size */
    color: white; /* Default color */
    margin-top: -10px; /* Adjust spacing if needed */
}
.header-logo img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the logo if needed */
    display: block; /* Ensure it's a block element */
    position: relative; /* Allow for positioning if needed */
    z-index: 20; /* Ensure it's above other content */
}


/* Top Menu Styles */
.header-top-menu {
    display: flex; /* Use flexbox for the top menu */
    justify-content: flex-start; /* Align items to the left */
    align-items: center; /* Align menu items vertically */
    margin-bottom: 10px; /* Space below the top menu */
}

.header-top-menu a {
    font-family: 'Roboto', sans-serif; /* Apply the font */
    font-weight: 100; /* Thin weight */
    margin-right: 15px; /* Add spacing between links */
    color: white; /* Default color for top menu */
    text-decoration: none; /* Remove underlines */
    position: relative; /* Required for the pseudo-element */
}

/* Change top menu text color when header is solid */
#boldandtrendy-header.solid .header-top-menu a {
    color: black; /* Change to black when header is solid */
}

/* Hover effects for top menu */
.header-top-menu a:hover {
    color: white; /* Keep the color white on hover */
}

.header-top-menu a::after {
    content: ""; /* Required to create the pseudo-element */
    display: block; /* Make it a block element */
    height: 2px; /* Height of the underline */
    background: white; /* Color of the underline */
    width: 100%; /* Full width of the text */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align to the left */
    bottom: -5px; /* Position it below the text */
    transform: scaleX(0); /* Start hidden */
    transition: transform 0.3s ease; /* Smooth transition */
}

.header-top-menu a:hover::after {
    transform: scaleX(1); /* Show the underline on hover */
}

/* Main Title Styles */
#boldandtrendy-header h1 {
    text-align: center; /* Center text */
    margin: 0; /* Remove default margin */
    font-family: 'Montserrat', sans-serif; /* Bold font for header */
    font-weight: 700; /* Bold weight for name */
    font-size: 4em; /* Increased font size */
    color: white; /* Default color */
}

/* Common Menu Styles */
.header-main-menu {
    display: flex; /* Use flexbox for menu items */
    justify-content: center; /* Center the menu */
    align-items: center; /* Align menu items vertically */
    color: white; /* Default color for menu */
    transition: color 0.3s ease; /* Smooth transition for color change */
    margin-top: 10px; /* Space for menu items */
}

.header-main-menu a {
    font-family: 'Roboto', sans-serif; /* Apply the font */
    font-weight: 100; /* Thin weight */
    margin: 0 15px; /* Add spacing between links */
    color: inherit; /* Inherit color from parent */
    text-decoration: none; /* Remove underlines */
    position: relative; /* Required for the pseudo-element */
    text-transform: lowercase; /* Transform text to lowercase */
}

.header-main-menu a:hover {
    color: inherit; /* Keep the color on hover */
}

.header-main-menu a::after {
    content: ""; /* Required to create the pseudo-element */
    display: block; /* Make it a block element */
    height: 2px; /* Height of the underline */
    background: white; /* Color of the underline */
    width: 100%; /* Full width of the text */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align to the left */
    bottom: -5px; /* Position it below the text */
    transform: scaleX(0); /* Start hidden */
    transition: transform 0.3s ease; /* Smooth transition */
}

.header-main-menu a:hover::after {
    transform: scaleX(1); /* Show the underline on hover */
}

/* Change underline color when header is solid */
#boldandtrendy-header.solid .header-main-menu a::after,
#boldandtrendy-header.solid .header-top-menu a::after {
    background: black; /* Change color to black when header is solid */
}

#boldandtrendy-header.solid .header-main-menu a:hover::after,
#boldandtrendy-header.solid .header-top-menu a:hover::after {
    background: black; /* Ensure it stays black on hover when header is solid */
}

/* Change header-main-menu text color when header is solid */
#boldandtrendy-header.solid .header-main-menu a {
    color: black; /* Change to black when header is solid */
}


/* Auth Controls Styles */
.auth-controls {
    position: fixed; /* Keep it fixed during scroll */
    top: 20px; /* Adjust the distance from the top */
    right: 20px; /* Adjust the distance from the right */
    display: flex; /* Align login and shopping bag horizontally */
    align-items: center; /* Center items vertically */
    margin-left: auto; /* Push to the right */
}

/* Login Text Styles */
.login {
    font-family: 'Lato', sans-serif; /* Same font for login */
    color: white; /* Default color for login */
    transition: color 0.3s ease; /* Smooth transition for color change */
    margin-right: 15px; /* Space between login and shopping bag */
}

/* Shopping Bag Icon Styles */
.shopping-bag {
    color: white; /* Default color for shopping bag icon */
    font-size: 1.5em; /* Adjust size as needed */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Change colors when the header is solid */
#boldandtrendy-header.solid .auth-controls .login,
#boldandtrendy-header.solid .auth-controls .shopping-bag {
    color: black; /* Change to black when header is solid */
}

/* Ensure the shopping bag changes color correctly when header is solid */
#boldandtrendy-header.solid .shopping-bag {
    color: black; /* Change to black when header is solid */
}

/* Ensure the login text color changes when header is solid */
#boldandtrendy-header.solid .login {
    color: black; /* Change to black when header is solid */
}
/* Existing styles... */

/* Change header background when solid */
#boldandtrendy-header.solid {
    background-color: white; /* Solid white when active */
}

/* Add these new styles */
#boldandtrendy-header.solid h1 {
    color: black; /* Change color to black when header is solid */
}

#boldandtrendy-header.solid .jewellery {
    color: black; /* Change the jewellery title color to black */
}
/* Existing styles... */

@media (max-width: 768px) {
    /* Hide the main menu on mobile */
    .header-main-menu {
        display: none; /* Hide the main menu on small screens */
    }

    /* Hide the top menu on mobile */
    .header-top-menu {
        display: none; /* Hide the top menu on small screens */
    }

    /* Mobile Header Styles */
    #boldandtrendy-header {
        height: auto; /* Adjust height for mobile */
        padding: 50px; /* Maintain padding */
    }

    /* Main Title */
    #boldandtrendy-header h1 {
        font-size: 1.5em; /* Smaller font size for mobile */
    }

    /* Jewellery Title */
    .jewellery {
        font-size: 2em; /* Smaller font size for mobile */
    }

    /* Adjust other styles if necessary */
}

/* ====================== 
   STARTING BANNER CSS 
====================== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #ffffff; /* Set body background to pure white */
}

/* Banner Styles */
#elegant-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Prevents overflow of images */
}

.carousel {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    opacity: 0; /* Start as invisible */
    transition: opacity 7s ease; /* Transition for fading */
}

.slide.active {
    opacity: 1; /* Show active slide */
}

/* Overlay Styles */
#elegant-banner .carousel .slide .overlay {
    position: absolute;
    top: 60%; /* Move overlay higher up */
    left: 50%;
    transform: translate(-50%, -50%); /* Adjust transform to move it up */
    text-align: center;
    z-index: 10; /* Ensure overlay is above images */
}

#elegant-banner .carousel .slide .overlay h2 {
    color: white; /* Set heading color to white */
    margin: 0; /* Remove default margin */
    padding-bottom: 10px; /* Space between heading and paragraph */
    font-size: 2em; /* Adjust heading font size */
}

#elegant-banner .carousel .slide .overlay p {
    color: white; /* Set paragraph color to white */
    margin: -10px 0 0; /* Move paragraph up */
    font-size: 1em; /* Adjust paragraph font size */
}

/* Image styling to fit container */
.carousel .slide img {
    width: 100%; /* Ensure images cover the slide */
    height: 100%; /* Make the image fill the container's height */
    object-fit: cover; /* Cover the entire area without distortion */
    object-position: center; /* Keep the image centered within the container */
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    #elegant-banner {
        height: 80vh; /* Reduce height for tablets */
    }
    #elegant-banner .carousel .slide .overlay {
        top: 70%; /* Adjust overlay position */
    }
}

@media (max-width: 768px) {
    #elegant-banner {
        height: 80vh; /* Further reduce height for mobile */
    }
    #elegant-banner .carousel .slide .overlay {
        top: 80%; /* Adjust overlay position for better visibility */
        padding: 0 10px; /* Maintain padding for mobile */
    }
    
    #elegant-banner .carousel .slide .overlay h2 {
        font-size: 1.2em; /* Adjust heading size */
    }
    
    #elegant-banner .carousel .slide .overlay p {
        font-size: 0.9em; /* Adjust paragraph size */
    }
}

@media (max-width: 480px) {
    #elegant-banner {
        height: 40vh; /* Adjust height for small mobile devices */
    }
    
    #elegant-banner .carousel .slide .overlay {
        top: 50%; /* Further adjust overlay position */
    }
    
    #elegant-banner .carousel .slide .overlay h2 {
        font-size: 1em; /* Further reduce heading size */
    }
    
    #elegant-banner .carousel .slide .overlay p {
        font-size: 0.9em; /* Further reduce paragraph size */
    }
}

/* ====================== 
   ENDING BANNER CSS 
====================== */

/* ====================== 
   STARTING CHECKOUT PAGE 
====================== */
.checkout-banner {
    overflow: hidden; /* Prevents overflow if the image exceeds the height */
}

.checkout-page-banner {
    position: relative; /* To position the text over the image if needed */
}

.checkout-page-banner img {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
    max-height: 600px; /* Set your desired max height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.payment-icons {
    display: flex;
    justify-content: center; /* Center the icons horizontally */
    align-items: center; /* Center the icons vertically */
    margin-bottom: 20px; /* Space between icons and the form */
}

.payment-icons img {
    width: 50px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 0 10px; /* Space between icons */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.payment-icons img:hover {
    opacity: 0.8; /* Add hover effect */
}

.checkout-text-form {
    margin: 0; /* No margin to eliminate space */
    padding: 0; /* No padding */
    text-align: center; /* Center the text */
}

.custom-checkout-text-form {
    padding: 0; /* Ensure no extra padding */
    margin: 0; /* No margin */
}

h4 {
    margin: 5px 0; /* Tighten heading spacing */
}

.section-checkout-text {
    margin: 0; /* Remove margins for the paragraph */
}

.payment-form-container {
    text-align: center; /* Center the content in the container */
    width: 80%; /* Adjust width as needed */
    max-width: 800px; /* Maximum width for larger screens */
    margin: 0 auto; /* Remove top margin */
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.payment-form-container h2 {
    text-align: center; /* Center title */
    color: #333; /* Dark color for readability */
}

.form-group {
    margin-bottom: 15px; /* Space between fields */
}

.form-group label {
    display: block; /* Label on top of input */
    margin-bottom: 5px; /* Space between label and input */
    font-weight: bold; /* Bold labels */
}

.form-group input {
    width: 100%; /* Full width inputs */
    padding: 10px; /* Padding for comfort */
    border: 1px solid #ccc; /* Border color */
    border-radius: 5px; /* Rounded edges */
}

.payment-methods {
    display: flex; /* Flexbox for horizontal alignment */
    justify-content: space-between; /* Space between methods */
    margin: 15px 0; /* Margin for space around */
}

.payment-methods label {
    flex: 1; /* Equal space for each option */
    padding: 10px; /* Padding for touch targets */
    background-color: #eee; /* Background for options */
    border-radius: 5px; /* Rounded edges */
    text-align: center; /* Center text */
    cursor: pointer; /* Pointer cursor */
}

.payment-methods input {
    margin-right: 5px; /* Space for radio buttons */
}

.payment-details {
    margin-top: 20px; /* Space before details */
}

.payment-detail {
    display: none; /* Initially hide detail sections */
}

.jewelry-container {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap */
    gap: 10px; /* Space between images */
    justify-content: center; /* Center the images horizontally */
    max-width: 300px; /* Set a max width for the container */
    margin: 0 auto; /* Center the container itself */
}

.jewelry-item {
    width: 50px; /* Set the width of the images */
    height: 50px; /* Set the height of the images */
    cursor: pointer;
    border: 2px solid transparent; /* Default border */
}

.jewelry-item.selected {
    border: 2px solid blue; /* Highlight selected images */
}
/* Center the recaptcha container */
/* Center the recaptcha container */
.recaptcha-container {
    display: flex;
    justify-content: center;  /* Center horizontally */
    width: 100%; /* Ensure the container takes up full width */
    margin-bottom: 20px; /* Adds space below the reCAPTCHA */
}

/* Center the submit button */
.button-container {
    display: flex;
    justify-content: center;  /* Center horizontally */
    margin-top: 20px; /* Adds space above the button */
    width: 100%; /* Ensures full width */
}

/* Style for the submit button */
input[type="submit"] {
    width: 100%; /* Make button take 100% of the width of its container */
    max-width: 400px; /* Limit maximum width for large screens */
    padding: 12px; /* Padding for comfort */
    background-color: #000; /* Black background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded edges */
    cursor: pointer; /* Pointer cursor */
    font-size: 16px; /* Larger text */
    transition: background-color 0.3s; /* Smooth transition for hover */
}

input[type="submit"]:hover {
    background-color: #4E4B4C; /* Darker grey on hover */
}

/* Responsive styles for small screens */
@media (max-width: 768px) {
    .recaptcha-container {
        width: 80%; /* Set width to 80% for smaller screens */
    }

    .button-container {
        width: 80%; /* Set button container width to 80% for mobile */
    }
    
    input[type="submit"] {
        width: 100%; /* Make button full width on small screens */
    }
}

@media (max-width: 480px) {
    .recaptcha-container {
        width: 90%; /* Slightly increase the width on very small screens */
    }

    .button-container {
        width: 90%; /* Ensure button container is also 90% */
    }
    
    input[type="submit"] {
        width: 100%; /* Button takes full width */
    }
}

/* ====================== 
   ENDING CHECKOUT PAGE 
====================== */

/* ======================
   Contact Form Styles
====================== */

.contact-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other elements */
}

.contact-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above the header */
    right: 20px; /* Position from the right */
    top: 80px; /* Adjust this value to ensure it's below the header */
    width: 475px; /* Set a wider width */
    height: 90%; /* Set height to allow scrolling */
    background-color: #fff; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow */
    overflow-y: auto; /* Enable vertical scrolling */
}


.modal-content {
    padding: 20px;
    max-height: calc(80vh - 40px); /* Adjust for header/footer */
    overflow-y: auto; /* Enable scrolling inside the content */
}


.modal-content {
    padding: 20px;
}

.modal-header {
    width: 100%; /* Full width */
    display: flex; /* Flexbox for alignment */
    justify-content: space-between; /* Space between title and close button */
    align-items: center; /* Center vertically */
}

/* Make sure the dropdown has enough height */
select.form-control {
    max-height: none;
    height: auto;
    overflow: visible;
}

.thank-you-message {
    font-size: 14px;
    margin: 10px 0;
}

.privacy-policy {
    font-size: 12px;
    margin: 10px 0;
}

.phone-field {
    display: flex;
    align-items: center;
}

.phone-field {
    display: flex;
    align-items: center; /* Ensure children are centered vertically */
}

.phone-field select {
    flex: 1; /* Takes more space */
    margin-right: 10px; /* Space between select and input */
    padding: 5px; /* Add padding */
}

.phone-field input {
    flex: 2; /* Takes less space compared to select */
    padding: 5px; /* Add padding */
}

.phone-field label {
    margin: 0; /* Reset label margins */
}


.send-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.send-button:hover {
    background-color: darkgray; /* Add hover effect */
}

.close-button {
    cursor: pointer;
}

.close-button:hover {
    color: #000; /* Change color on hover */
}

.contact-icon img {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
}

#subject {
    background-color: white !important; /* Force white background */
    color: black !important;            /* Force black text */
    border: 1px solid #ccc;             /* Optional: add a border */
}

#subject option {
    background-color: white !important; /* Force white background for options */
    color: black !important;            /* Force black text for options */
}
@media (max-width: 600px) {
    .contact-modal {
        width: 90%; /* Make modal width responsive */
        top: 10px; /* Adjust position for smaller screens */
    }

    .contact-icon {
        right: 10px; /* Adjust position for smaller screens */
    }
    
    .send-button {
        width: 100%; /* Full width button on small screens */
    }
}


/* ====================== 
   ENDING Contact FORM STYLES 
====================== */



/* ====================== 
   Starting Login FORM STYLES 
====================== */
/* Ensure modal appears correctly */
.login-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    top: 0; /* Align to the top */
    right: 0; /* Align to the right */
    width: 600px; /* Set a width */
    height: 100%; /* Full height */
    background-color: #fff; /* Background color */
    border-radius: 0 10px 10px 0; /* Rounded corners only on the left */
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2); /* Shadow */
    transition: transform 0.3s ease; /* Smooth transition */
}

.login-modal.show {
    display: block; /* Show the modal */
    transform: translateX(0); /* Move it into view */
}

.login-modal-close {
    cursor: pointer;
    font-size: 24px;
    float: right; /* Align to the right */
    margin: 10px; /* Add margin */
}

h2 {
    text-align: center;
    margin: 20px 0; /* Adjusted margin */
}

.login-form-line {
    margin: 20px; /* Uniform margin */
}

label {
    display: block;
    margin-bottom: 5px; /* Reduced margin */
    font-size: 0.9em; /* Adjust font size */
}

/* Decrease font size for small text */
.small-text {
    font-size: 0.7em; /* Smaller font for input hints */
    color: #666; /* Gray color for hints */
    margin-bottom: 5px; /* Space below the hint */
}

input[type="email"],
input[type="password"] {
    width: calc(100% - 20px); /* Full width with padding */
    padding: 10px; /* Padding */
    border: 1px solid #ccc; /* Border */
    border-radius: 5px; /* Rounded corners */
    box-sizing: border-box; /* Include padding in width */
}

.line {
    height: 1px; /* Height of the line */
    background-color: #ccc; /* Line color */
    width: 100%; /* Full width */
    margin: 5px 0; /* Space above and below the line */
}

.show-password {
    cursor: pointer;
    font-size: 0.9em;
    float: right; /* Align to the right */
}

.login-password-options {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-end; /* Align items to the right */
    margin: 10px 20px; /* Adjusted margin */
}

.right-options {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-end; /* Align items to the right */
}

.login-create-account {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    margin-left: auto; /* Push the button to the right */
    padding: 20px; /* Padding around the section */
}
.login-create-account div {
    margin-bottom: 5px; /* Reduce space between each text item */
}
.account-text {
    margin-bottom: 10px; /* Space between text and button */
}
.create-account-button {
    font-family: 'Roboto', sans-serif; /* Font for the button */
    font-weight: 300; /* Lighter weight */
    margin-left: auto; /* Push the button to the right */
    display: block; /* Make it a block element */
    width: fit-content; /* Adjust width to fit content */
}

.login-button,
.create-account-button {
    margin-top: 20px; /* Increase this value to move the button down */
    margin-left: auto; /* Push the button to the right */
    width: 150px; /* Fixed width for the button */
    padding: 10px; /* Consistent padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 0.9em; /* Font size */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}
.login-button {
    background-color: white; /* Default background */
    color: black; /* Default text color */
    border: 1px solid black; /* Thin black frame */
}

.login-button:hover {
    background-color: black; /* Background on hover */
    color: white; /* Text color on hover */
}

.create-account-button {
    background-color: black; /* Default background */
    color: white; /* Default text color */
}

.create-account-button:hover {
    background-color: white; /* Background on hover */
    color: black; /* Text color on hover */
}

.create-account {
    text-transform: uppercase; /* Capital letters */
    font-weight: bold; /* Bold text */
}

/* Trigger styling */
#unique-login-trigger {
    cursor: pointer; /* Change cursor to pointer */
}
.consent-options {
    font-family: 'Open Sans', sans-serif; /* Different font for the paragraph */
    font-size: 0.8em; /* Slightly smaller size */
    color: #666; /* Lighter gray for less emphasis */
}
.consent-options div {
    margin-left: 20px; /* Add space to the left of each checkbox line */
}

.login-create-account p {
    margin-left: 20px; /* Add space to the left of the paragraph */
}
.consent-options p {
    margin-left: 20px; /* Adjust this value as needed */
}

.create-account-button {
    font-family: 'Roboto', sans-serif; /* Different font for the button */
    font-weight: 300; /* Lighter weight */
}

p {
    font-family: 'Open Sans', sans-serif; /* Different font for the paragraph */
    font-size: 0.8em; /* Slightly smaller size */
    color: #666; /* Lighter gray for less emphasis */
}

@media only screen and (max-width: 768px) {
    /* Make the modal take up full width on smaller screens */
    .login-modal {
        width: 100%;
        height: 100%; /* Full height */
        border-radius: 0; /* No rounded corners for mobile */
        box-shadow: none; /* Remove shadow */
    }

    /* Adjust input fields for smaller screens */
    input[type="email"],
    input[type="password"] {
        width: 100%; /* Full width */
        padding: 12px; /* Adjust padding for touchscreens */
    }

    .login-form-line {
        margin: 15px; /* Slightly smaller margin */
    }

    /* Adjust title and form text for better readability on small screens */
    h2 {
        font-size: 1.2em; /* Smaller font for titles */
        margin: 15px 0;
    }

    /* Adjust label font size for mobile */
    label {
        font-size: 0.8em; /* Smaller font for labels */
    }

    /* Adjust buttons to be full width on mobile */
    .login-button,
    .create-account-button {
        width: 100%; /* Full width buttons */
        padding: 12px; /* Increased padding for better touch area */
        font-size: 1em; /* Adjust font size */
    }

    /* Make the login modal closer to the top and more compact */
    .login-modal-close {
        font-size: 20px; /* Smaller close icon */
        margin: 5px; /* Less margin */
    }

    /* Stack the options and form fields vertically */
    .login-password-options,
    .right-options,
    .login-create-account {
        flex-direction: column;
        align-items: stretch; /* Full-width alignment */
        margin: 0; /* Reset margin */
    }

    .show-password {
        font-size: 0.8em; /* Smaller font size */
        float: none; /* Align to the left for mobile */
    }

    .line {
        width: 80%; /* Shorter line for mobile */
        margin: 10px 0; /* Adjust margins */
    }

    /* Adjust the small-text to fit better on small screens */
    .small-text {
        font-size: 0.6em; /* Smaller font size */
    }

    /* Adjust the "Create Account" section layout */
    .login-create-account div {
        margin-bottom: 10px; /* More spacing for readability */
    }

    .consent-options p,
    .login-create-account p {
        margin-left: 0; /* Remove extra left margin */
    }

    /* Adjust modal positioning for smaller screens */
    .login-modal {
        top: 50px; /* Provide some space from the top */
    }

    /* Make the login form more compact on mobile */
    .login-create-account {
        margin-left: 0;
        padding: 10px; /* Less padding */
    }
}


/* ====================== 
   Ending Login FORM STYLES 
====================== */
