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

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

.logo {
    width: 500px;
    animation: fadeIn 2s ease forwards;
    position: relative; /* Make logo relative */
    margin-bottom: 30px; /* Add some space between the images */
}

.second-image {
    width: 450px;
    opacity: 0; /* Initially hidden */
    transform: translateY(-50px); /* Start position above the final position */
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(2); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInSecond {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden-clickable-area {
    display: none; /* Initially hidden */
    position: absolute;
    width: 50px; /* Adjust the size to cover the circle */
    height: 50px;
    cursor: pointer;
    background-color: transparent; /* Make sure it's invisible */
}

.signup-form {
    margin-top: 150px;
}

.signup-form input, .signup-form button {
    padding: 10px;
    margin: 5px;
    border: none;
    outline: none;
}

.signup-form button {
    background-color: #7059d7;
    color: #91da91;
    cursor: pointer;
}

.signup-form input {
    background-color: #333;
    color: #FFF;
}

.signup-form input::placeholder {
    color: #AAA;
}

h1, p, a {
    color: #FFF;
}

a {
    text-decoration: none;
    background-color: #FFFF;
}

a:hover {
    background-color: #FFFF;
}

/* Media query for responsiveness */
@media only screen and (max-width: 600px) {
    .logo{
        width: 100%;
        max-width: 80%; /* Add some padding to the sides */
        margin-bottom: 20px; /* Ensure there's space between images */
    }
    .second-image {
        width: 100%;
        max-width: 75%; /* Add some padding to the sides */
        margin-bottom: 20px; /* Ensure there's space between images */
    }
}
