@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

@keyframes checked {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

* {
    box-sizing: border-box
}

body {
    color: #000000;
    font-family: "Open Sans";
    background: #ffffff;
    padding: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 14px;
	color: #654321;
	text-align:center ;
}
h1 {
    font-size: 30px;
    margin-bottom: 14px;
	color: #654321;
	text-align:center ;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #90EE90;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
input[type=reset] {
  background-color: #FFD1DC;
  font-weight: bold;
  
 
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}
 input[type='radio']:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

    input[type='radio']:checked:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #04AA6D;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
}

input[type=text]:focus {
  background-color: #90EE90;
}
#text1
    {
        font-weight: bold;
    }
	select {
  width: 30%;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f1f1f1;
}
	
/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}