body{  
  background-color: yellow; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, yellow , white); /* Standard */
  top: 73px;
  bottom: 10px;
 
}
.div_Login{
/* Centraliza divs */
	position: absolute;
    width: 500px;
    height: 70px;
    top:50%;
    left:50%;
    margin-left:-250px;	/* metada da largura da div */
    margin-top:-45px; /* metada da altura da div */
/* Fim de centralização */  
  background-color: #008B00;
/* border-radius arredonda as quinas da div */
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;  
/* Fim border radius */
  padding: 10px;
  text-align: center;
  font-size: 30px;
  font-style: bold;
  color: #7FFFD4;
  border : 10px;
}

.div_opcoes{
	position: absolute;
	bottom: -32px;
	left: 0px; 
    background-color: #FFFF00;
    width: 520px; 
    height: 30px;
    text-align: center;
    font-size: 20px;
	color: #000000;	
}
