/* styles.css */

/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and container styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    max-width: 450px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form Control Styling */
.form-control {
    margin-bottom: 20px;
}

label {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

input, select, textarea, button {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

textarea {
    resize: vertical;
    min-height: 100px;
}

select, input, textarea {
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    input, select, textarea, button {
        font-size: 1.1em;
        padding: 15px;
    }

    h2 {
        font-size: 1.6em;
    }
}
