/* Reset default styles */
* {
    box-sizing: border - box;
    padding: 0;
    margin: 0;
    font-family: Arial, sans - serif;
}

body {
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.container h1 {
    text-align: center;
    margin-top: 25px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select,
textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.gender {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.95rem;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #218838;
}

/* Responsive */
@media(max-width: 500px) {
    .container {
        padding: 20px;
    }

    input,
    select,
    textarea,
    button {
        font-size: 0.95rem;
    }
}