/* Styles for the Signup Wall */
.signup-wall, .login-wall {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: flex; /* Use flexbox to center the content */
}

.signup-form-container, .login-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    position: relative; /* Ensure the close button is positioned relative to this container */
}

.signup-form-container h2, .login-form-container h2 {
    margin-bottom: 20px;
}

.signup-form-container label, .login-form-container label {
    display: block;
    margin-top: 10px;
}

.signup-form-container input, .login-form-container input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.signup-form-container form button, .login-form-container form button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #ff5a5f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.signup-form-container form button:hover, .login-form-container form button:hover {
    background-color: #e14e50;
}

#message {
    margin-top: 20px;
    color: green;
}

/* Close Button Styles */
.close-btn {
    position: absolute;
    top: 10px;  /* Position the button at the top */
    right: 10px; /* Position the button at the right */
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.close-btn:hover {
    color: #ff5a5f; /* Color on hover for better visibility */
}
