body {
    font-family: Arial, sans-serif;
    background: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 480px;
}

h2 {
    text-align: center;
    color: #003366;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

input[type="text"],
input[type="email"] {
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}

.note {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #555;
}
