#message-container {
    text-align: center;
    margin-top: 0px; /* Adjust spacing as needed */
    color: white;
    font-size: 24px; /* Adjust font size for better visibility */
    font-family: "Special Elite", cursive;
    padding: 2px; /* Add some padding for mobile screens */
}

@media (max-width: 768px) {
    #message-container {
        font-size: 18px; /* Adjust font size for smaller screens */
    }
}

#typewriter {
    display: inline-block;
    border-right: 3px solid white; /* Cursor effect */
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 2px;
}





.teasers-row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px; /* Adjust as needed */
}

.teaser {
    text-align: center;
    color: white;
    position: relative;
    width: 200px; /* Adjust size as needed */
    cursor: pointer;
}

.teaser-icon {
    position: relative;
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Adjust size as needed, consider making the padlock icon smaller than the feature icon */
}

.teaser:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
    border-radius: 5px; /* Optional: rounded corners */
}


.teaser-icon img, .lock-overlay img {
    width: 200px; /* Adjust as needed */
}

p {
    margin-top: 10px;
}





button.cancel {
    margin-left: 10px;
    background-color: #f44336; /* Red color for Cancel button */
}

#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px; /* Add space above the logo */
    margin-bottom: 50px; /* Adjust based on your layout needs */
}

#logo-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px; /* Space above the second logo */
    margin-bottom: 20px; /* Space below the second logo */
}

#logo {
    max-width: 800px; /* Adjust based on desired size */
    height: auto;
}

#logo {
    animation: logoEntrance 2s ease-in-out forwards;
    transform-origin: center;
    opacity: 0;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}


#logo2 {
    max-width: 500px; /* Adjust based on desired size for the second logo */
    height: auto;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    #logo, #logo2 {
        max-width: 90%; /* Adjust logo size on smaller screens */
    }

    #logo2 {
        max-width: 60%; /* Make "Music is a game of art" smaller than the main logo */
    }
}


.hidden {
    display: none;
}

body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Special Elite", cursive;
    background-color: #000;
    text-align: center;
    color: #37474f;
    background-image: url("/images/moviedoodlez-back-2025.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start; /* Align items to the start of the container */
    min-height: 100vh;
}

#auth-container {
    position: relative; /* Change from absolute to relative */
    width: 100%; /* Ensure full width to center contents */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-div, #initialDiv {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Make the auth forms stand out */
    border-radius: 10px; /* Round corners for aesthetics */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    margin-top: 20px; /* Ensure there's a gap between the logo and auth section */
    color: white;
    width: fit-content; /* Adjust width to fit its content */
    margin: 20px auto; /* Center align */
}

button {
    margin: 5px; /* Add some spacing around buttons */
    padding: 10px 20px;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Dark Mode adjustments if applicable */
body.dark-mode {
    background-color: #333;
    color: white;
}

/* Labels */
label {
    font-weight: bold;
    margin-right: 10px;
    color: white;
}

/* Inputs */
input {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Adjustments for mobile views */
@media (max-width: 768px) {
    .auth-div, #initialDiv {
        padding: 10px;
        width: auto; /* Adjust width on smaller screens */
    }
    #initialDiv {
        flex-direction: row; /* Ensure buttons are in a row */
        justify-content: center; /* Center buttons horizontally */
    }
}



header0 {
  position: absolute;
  width: 0.25px;
  height: 0.25px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
