/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Header styles */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Form styles */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: left; /* Align text to the left */
}

h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Form group styles */
.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block; /* Ensure label is on top */
}

input, textarea {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

button {
    background-color: #ffc107;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #e0a800;
}

/* Responsive design */
@media (max-width: 768px) {
    form {
        width: 90%;
    }
}
