/* public/login.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #6B6A6A;
    color: rgb(245, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: #333333; /* Dark red background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(255, 255, 255);
    width: 300px;
    text-align: center;
    box-sizing: border-box;
}

input[type="email"], input[type="password"], input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
}

button {
    background-color: #ffffff;
    color: #333333;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #f80d0d;
}

/* Additions for the dropdown functionality */
#signupForm {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    overflow: hidden;
    max-height: 0; /* Start with max-height 0 */
    opacity: 0;  /* Start with opacity 0 for smooth fading */
}

#signupForm.active {
    max-height: 500px; /* Maximum content height */
    opacity: 1;  /* Full visibility */
}
