.cuerpo
{
    display: grid;
    grid-template-rows: 70px 200px;
    width: 300px;
    height: 280px;
    margin: auto;
    margin-top: 80px;
    background: rgb(2, 89, 89);
    border: 3px solid rgb(0, 0, 0);
    gap: 1px;
    border-radius: 5% 3% 7rem 9px;
}

.encabezado
{
    display: grid;
    grid-row: 1/2;
    background: rgb(2, 89, 89);
    color: #F2D399;
    text-align: center;
    line-height: 20px;
    margin-top: 10px;
    padding: 10px;
    width: 280px;
    height: 40px;
}

.formulario
{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr; 
    width: 280px;
    height: auto;
    margin: 10px 10px 10px 10px;
    background: rgb(2, 89, 89);
    gap: 0px;
}
.usuario
{
    display: grid;
    grid-row: 1/2;
    grid-column: 2/3;
    background: rgb(2, 89, 89);
    width: auto;
    overflow: hidden;
    align-items: center;
    
}

.password
{
    display: grid;
    grid-row: 2/3;
    grid-column: 2/3;
    background: rgb(2, 89, 89);
    width: 200px;
    overflow: hidden;
    align-items: center;
}


.btn
{
    display: grid;
    grid-row: 3/4;
    grid-column: 1/3;
    background:  rgb(2, 89, 89);
    text-align: center;
    
}

.image 
{
    display: grid;
    grid-column: 1/2;   
    grid-row: 1/3 ;          
    background: rgb(2, 89, 89);
    width: 80px;
    height: auto;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

input[type=text], input[type=password]
{
    height: 10px;
    width: auto;
    margin: 2% 2% 2% 2% ;
    padding: 8px 2px;
    border: 2px solid #ccc;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btnLogin
{
    height:50px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: -webkit-linear-gradient(top, rgb(50, 109, 0) 0%, rgb(57, 169, 0) 47%, rgb(79, 83, 0) 100%);
}

.btnLogin:hover
{
    margin-top: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: -webkit-linear-gradient(top, rgb(0, 110, 9) 0%, rgb(0, 255, 21) 47%, rgb(5, 156, 0) 100%);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
}

.btnLogin:active
{
    margin-top: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: -webkit-linear-gradient(top,#00ff00,#32cd32);
	background: -moz-linear-gradient(top,#00ff00,#32cd32);
}



