.inputDiv {
    margin-bottom: 40px;
}

input[type=text] {
    padding:10px;
}

input[readonly]{
    background-color: orange;
}

button, input[type=button], input[type=reset]{
    padding: 10px;
    margin: 5px 15px;

    background-color: rgb(72, 72, 235);
    
    border-radius: 5px;
    border: 0;

    color: white;
    font-weight: bold;
}

button:hover, input[type=button]:hover, input[type=reset]:hover {
    background-color: brown;
    cursor: pointer;
}

/* #msg {
    width:80%;
    height:100px;
    margin-top:20px;
    border: 1px solid red;
    
    display:flex;
    justify-content: center;
    align-items: center;

    font-size: large;
    font-weight: bold;
}

#msg span{
    color:red;
} */