/* Center text in input and textarea fields */
form input[type="text"],
form input[type="email"],
form textarea {
    text-align: center;
}

/* Style the placeholder text */
form ::placeholder {
    color: #999;
    font-style: italic;
}

/* Optional: Button hover and card polish */
.btn-primary {
    background-color: #003366;
    border-color: #003366;
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
}

.card {
    border-radius: 1rem;
}
