body {
    margin: 0;
}

form {
    margin: auto;
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#Tc{
    background-color: #FE0000;
    border: 2px solid #fe0000;
    border-radius: 5px;
  }
  
  #Tc:hover{
    background-color: #c3c3c300;
    border: 2px solid #fe0000;
    border-radius: 5px;
  }
  


#h1 {

    font-size: 1%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}


label {
    display: block;
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
}

input[type="submit"] {

    width: 25%;
    background-color: #fe0000;
    border: 2px solid #fe0000;
    padding-top: 1px;
    padding-bottom: 1px;
    color: #fff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out 0s;
}

input[type="submit"]:hover {
    border: 2px solid #fe0000;
    color: #ffffff;
    background-color: #45a04900;
}



input[type="submit"]:hover {
    border: 2px solid #fe0000;
    color: #ffffff;
    background-color: #45a04900;
}


@media screen and (max-width: 600px) {

    form {
        font-size: 50%;
        width: 300px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    }

    form h1 {
        font-size: 50%;
        width: 300px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    }


}