body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
}

.logo, p {
    text-align: center;
    color: #2f2f2f;;
    font-style: italic;

}

.signup-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    margin-bottom: 10px;
    text-align: center;
}

.logo img {
    width: 60px; /* Adjust as needed */
}

#signupForm {
    width: 90%;
    max-width: 320px;
}

#signupForm input[type="email"], #signupForm button {   
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    border-radius: 20px;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

#signupForm button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 20px;
    background-color: #fff;
    color: red;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#signupForm button:hover {
    background-color: #e0e0e0;
}

#signupForm button:active {
    background-color: #d3d3d3; /* Slightly darker than the hover color */
    color: #333; /* Optional: change text color */
}

#signupForm button.loading {
    /* Style for loading state, e.g., different background color or cursor */
    cursor: wait;
    /* Optional: Add more styles like changing color or adding a spinner background image */
}

#message {
    color: #a1a1a1;
    background-color: #000;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    width: 450px;
    line-height: 48px;
}


/* Responsive adjustments */ 

@media (min-width: 600px) {
    #signupForm {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #message {
    font-size: 12px;
    width: 340px;
    line-height: 24px;
}

#signupForm button {
    font-weight: 300;
}

}

.grecaptcha-badge {
    visibility: hidden !important;
}
