/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

label {
    font-size: 1rem;
    text-align: left;
    display: block;
    margin-bottom: 0.3rem;
}

select, input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.2rem;
    }
    select, input {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    label {
        font-size: 0.9rem;
    }
}
