/* General Page Layout */
body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* The White Box (Card) */
.card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 450px;
    width: 90%;
}

/* Your Specific Logo Fix */
.logo-container img, .card img {
    display: block !important;
    margin: 0 auto 25px auto !important;
    height: auto !important;
    max-width: 100%;
}

/* Typography */
h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* The Input Box */
input[type="email"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Crucial for alignment */
    font-size: 1rem;
}

/* The Button */
button {
    background-color: #000;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #333;
}