
input[type=text], input[type=password],input[type=date]{
    width: 100%;
    padding: 2px 2px; 
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
select {
    width: 100%;
    padding:2px 10px;
    border: none;
    border-radius: 2px;
    background-color: #f1f1f1;
}
textarea {
    width: 100%;
    height: 100px;
    padding: 6px 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f8f8f8;
    font-size: 14px;
    resize: none;
}
button
{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 8px 52px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}
input[type=button], input[type=submit], input[type=reset] {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 2px 2px;
    text-decoration: none;
    margin: 2px 2px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

input[type=submit]:hover {
    background-color: #45a049;
}

