body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(270deg, #f0f0f0, #e0e0e0);
    background-size: 400% 400%;
    animation: gradientAnimation 30s ease infinite;
    flex-flow: column nowrap;
}

h1 {
    font-size: 46px;
    font-weight: bold;
    color: #333;
    max-width: 650px;
    width: 80%;
    text-align: center;
    height:50px;
}


@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.register-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    margin-top:40px;
}

#signup-form {
    display: flex;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #ccc;
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
    background-color: white;
    
}

#signup-form input[type="email"] {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 18px;
    padding-left:20px;
}

#signup-form button {
    padding: 10px 20px;
    border: none;
    border-radius:  30px;
    background-color: #333;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

#signup-form button:hover {
    background-color: #555;
}

.brand-logo {
    position: fixed;
    right: 40px; /* Adjust this value as needed to fit your layout */
    bottom: 40px; /* Adjust this value as needed to fit your layout */
    opacity: 0.4; /* Set the opacity to 40% */
    width: 50px; /* Adjust this value as needed based on the actual size of your logo */
    height: auto; /* Maintains the aspect ratio of the image */
}

