@charset "utf-8";
/* CSS Document */

#msform {  
        width: 490px;  
        margin: 50px auto;  
        text-align: center;  
        position: relative;  
    }  
    #msform fieldset {  
        background: white;  
        border: 0 none;  
        border-radius: 3px;  
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);  
        padding: 20px 30px;  
      
        box-sizing: border-box;  
        width: 80%;  
        margin: 0 10%;  
      
        /*stacking fieldsets above each other*/  
        position: absolute;  
    }  
    /*Hide all except first fieldset*/  
   #msform fieldset:not(:first-of-type) {  
        display: none;  
    }  
    /*inputs*/  
    #msform input, #msform textarea {  
        padding: 15px;  
        border: 1px solid #ccc;  
        border-radius: 3px;  
        margin-bottom: 10px;  
        width: 100%;  
        box-sizing: border-box;  
        font-family: montserrat;  
        color: #2C3E50;  
        font-size: 13px;  
    }  
	
	#msform .action-button {  
        width: 100px;  
        background: #27AE60;  
        font-weight: bold;  
        color: white;  
        border: 0 none;  
        border-radius: 1px;  
        cursor: pointer;  
        padding: 10px 5px;  
        margin: 10px 5px;  
    }  
    #msform .action-button:hover, #msform .action-button:focus {  
        box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;  
    }  
.form01{
	width: 490px;  
	height:50px;
        margin: 5px auto;  
        text-align: center; 
		font-size:20px; 
        position: relative;  
		color:#FFF;
		border-radius:15px;
		background:#F60;
		
}
.form01:hover{
	background:#00F;
}