body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa; /* match your home page bg */
    color: #333; /* main text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff; /* card bg */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #2c3e50; /* main accent */
    margin-bottom: 1.5rem;
}

input[type="email"],
input[type="tel"],
input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    background-color: #3498db; /* button accent */
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #2980b9;
}

.pin-section {
    display: none;
    margin-top: 1rem;
}

.pin-section input {
    margin-bottom: 0.5rem;
}

.message {
    font-size: 0.9rem;
    color: #27ae60;
    margin-top: 0.5rem;
}
