body{
    font-family:  Arial,sans-serif;
    margin: 10px;
    background-color: rgb(11, 225, 150);
    color: brown;
}
form{
    background-color: rgb(62, 236, 9);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(0,0,0,0.1);
    max-width: 600px;
    margin: auto;

}
fieldset{
    border: none;
    margin-bottom: 20px;
}
legend{
    font-size: 35px;
    color: rgb(206, 29, 6);
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    font-style: italic;
}
.A{
    color: blue;
}
label{
    display: block;
    margin-top:5px;
    font-weight: bold;
    color: blue;

}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[list],
textarea,
 select{
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #04df54;
    border-radius: 4px;
    background-color: rgb(235, 225, 225);
    
}
button{
    background-color: rgb(225, 11, 107);
    border-color: brown;
    border-radius: 4px;
    color: rgb(18, 11, 211);
    width: 65px;
    height: 35px;
}
.B{
    background-color: rgb(99, 244, 59);
    border-color: rgb(65, 155, 53);
    border-radius: 4px;
    
}

