
	input[type=text], select {
		width: 100%;
		padding: 12px 20px;
		margin: 8px 0;
		display: inline-block;
		border: 1px solid #ffffff;
		border-radius: 4px;
		box-sizing: border-box;
	}
	
	input[type=text]:focus{
		border: 2px solid black;
	}

	input[type=button], input[type=submit], input[type=reset] {
		font-size: 15px;
		background-color: white;
		width: 40%;
		box-sizing: border-box;
		border-radius: 4px;
    		border: none;
    		color: black;
     		padding: 12px 20px;
    		margin: 0 13px;
		text-align: center;
    		cursor: pointer;
	}