/* mainStyle.css */

body {
    font-family: Calibri, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

form {
    background-color: #ffffff;
    padding: 20px;
    max-width: 500px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

div {
    background-color: #ffffff;
    padding: 20px;
    max-width: 500px;
    margin: auto;
	margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Calibri, sans-serif;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

img:hover{
    opacity: 0.5;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Calibri, sans-serif;
}

button[type="button"] {
    background-color: #4CAF50;
    color: white;
    margin-right: 10px;
}

button[type="reset"] {
    background-color: #f44336;
    color: white;
}