input[type=text]{
    width: 50%;
    padding: 12px 20px 12px 20px;
    margin: 8px 0;
    border: none;
    border-bottom: 2px solid red;
    border-left: 2px solid red;
    border-radius: 4px;
    background-color: white;
    /*background-image: url('trrr.png');*/
    background-repeat: no-repeat;
    background-position: 10px 10px;
}
input[type=text]:hover{
    border: 2px solid gray;
}
input[type=text]:focus{
    border: 2px solid green;
}
form{
    width: 60%;
    border-bottom: 2px solid red;
    border-left: 2px solid red;
    border-radius: 4px;
    background-color: gainsboro;
}
td{
    border-bottom: 1px solid red;
    border-left: 1px solid red;
    border-radius: 4px;
}
#successMessage {
    display: none; /* Скрыто по умолчанию */
    font-size: 18px;
    margin-top: 10px; /* Отступ сверху */
    padding: 10px; /* Отступ внутри */
    background-color: #e0ffe0; /* Светло-зеленый фон */
    border: 1px solid green; /* Зеленая рамка */
    border-radius: 4px; /* Закругление углов */
}