/* @override 
	http://127.0.0.1:5000/static/style.css */

/* --- FIX FOR VERTICAL CENTERING --- */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ---------------------------------- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(222,240,240);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
	padding: 0 40px;
}

.card {
    background-color: white;
    padding: 30px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 260px;
    height: auto;
    margin-bottom: 20px;
	max-width: 100%;
}

.first-name-input {
	display: none;
}

.launch-text {
    font-size: 1rem;
    line-height: 1.6;

    font-weight: 600;
}

#signup-form {
    display: flex;
    gap: 10px;
}

#email-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ff80ab;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    /* Add a minimum width to prevent it from becoming too small before wrapping */
    min-width: 150px; 
}

#email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 128, 171, 0.3);
}

button {
    padding: 12px 20px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap; /* Keep this to prevent text wrapping */
	color: black;
}

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

#message-area {
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 1.2em;
display: none;
}


/* --- RESPONSIVE STYLES FOR SMALL SCREENS --- */
/* This block will only apply when the screen width is 480px or less */
@media (max-width: 480px) {
    .card {
        padding: 30px 25px;
    }

    #signup-form {
        /* Change the direction of the flex container to stack items vertically */
        flex-direction: column;
    }

    #email-input {
        /* Remove the minimum width on small screens so it can be full-width */
        min-width: auto;
    }
}
