body, html {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #131313; 
    color: #333;
    height: 80%;
    display: flex;
    flex-direction: column; /* Align children (logo and form) in a column */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
}

.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo {
    max-width: 100px; /* Adjust based on your logo's size */
    height: auto;
    padding: 50px; /* Center the form container horizontally */

}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* Center the form container horizontally */
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
}

.input-group input[type="text"],
.input-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button#enterPitchPalette {
    width: 100%;
    padding: 10px;
    background-color: #ff7b00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button#enterPitchPalette:hover {
    background-color: #b34800;
}

#error {
    margin-top: 20px;
    text-align: center;
    display: none; /* Initially hidden */
}


#response {
    margin-top: 40px;
    text-align: center;
    color: #707070; /* Make text color white for visibility against dark background */
}

#threejs-container {
    position: absolute; /* Position it over the body */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure it's behind other content */
}

.content {
    position: relative; /* Ensure content is positioned in the document flow */
    z-index: 1; /* Higher than the canvas */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    color: #919191; 
    font-family: 'Inter', sans-serif;
}

.warning {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #919191; 
    font-family: 'Inter', sans-serif;
}

.loader {
    border: 16px solid rgb(73, 73, 73); 
    border-top: 16px solid #a05111; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 1; /* Higher than the canvas */

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}