/* SECCION - REGISTRO */
section {
    background-image: url("../images/background.png");
}

.section-div {
	position: absolute;
    display: flex;
    justify-content: center;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 28rem;
	width: 50rem;
	background: rgba(248, 248, 249, 0.4);
	backdrop-filter: blur(15px);
	box-shadow: rgba(21, 21, 37, 0.15) 0px 0px 24px;
	border-radius: 2rem;
}

.section-ul{
    width: 70%;
    top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
    overflow: hidden;
    text-align: left;
}

.section-ul li{
    display: flex;
    padding-bottom: 1rem;
}

.section-ul h1{
    font-size: 2rem;
}

.section-input {
	width: 100%;
	height: 2.5rem;
	color: rgb(88, 88, 88);
	background-color: white;
	padding-left: 1rem;
	padding-right: 1rem;
	border-radius: 2rem;
	border-style: solid;
	border-color: rgb(240, 240, 240);
	border-width: 0.05rem;
}

.section-input:focus{
    border-color: #7ab846;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(87,168,233, .2);
    box-shadow: 0 0 0 2px rgba(87,168,233, .2);
    background-color: white;
}

.section-li-button{
	display: flex;
	justify-content: center;
}

.section-button {
	height: 2.5rem;
	width: 40%;
}

@media only screen and (max-width: 65rem){
    .section-div {
        width: 90%;
    }

    .section-ul h1 {
        font-size: 1.3rem;
    }

    .section-ul {
        width: 90%;
        text-align: center;
    }

    .section-ul li {
        justify-content: center;
    }

	.section-button {
		width: 100%;
	}
}
/* * * * * * * * */