.title {
    text-transform:uppercase;
    color:black;
    font-weight: bold;
}

.form {

    width: 400px;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ccc;

}

table{
    margin: 40 px;
    width: 80%;
}

th, td{
    padding: 12px;
    border: 1px solid;
    text-align: center;
}

thead{
    background-color: Blue ;

}

tbody tr:nth-child(even){
    background-color:gray ;
}

form input,
.form select,
.form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form button {
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #2196f3;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.form button:hover {
  background-color: blue;
}

.form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}