	input[type=text], textarea {
                width: 100%;
                padding: 15px 20px;
                margin: 10px 0;
                box-sizing: border-box;
                border: none;
                border-bottom: 2px solid red;
            }

            input[type=submit], [type=reset], [type=cancel] {
                width: 20%;
                background-color: #099ba0;
                color: white;
                padding: 14px 20px;
                margin: 8px 0;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }

            input[type=submit]:hover, [type=reset]:hover,  [type=cancel]:hover {
                background-color: #04686b;
            }

            #form1 {
                border-radius: 10px;
                background-color: #b3eff1;
                padding: 20px;
            }

	    #form2 {
                border-radius: 10px;
                background-color: thistle;
                padding: 20px;
            }