body {
    background: var(--fondo);
}


/* `TEXTO INICIO */
#texto_inicio {
    margin-left: 15rem;
    position: relative;
    z-index: 9999;
}

#texto_inicio h2 {
    color: var(--color_p);
    margin-top: 4rem;
    font-size: 2.5rem;
}

#texto_inicio p {
    font-size: 2rem;
    color: #8e8e8e;
    margin-bottom: 1rem;
}

/* CONTENIDO */
#contenido {
    position: relative;
    display: flex;
    flex-direction: column;
}

#imagen_inicio {
	pointer-events: none;
	user-select: none;
	width: 100%;
	position: absolute;
}

#seccion_sesion {
    color: var(--color_p);
	padding: 4rem 15rem;
	font-size: 1.5rem;
}

#seccion_sesion a {
    color: var(--color_p);
}

#form_registro, #form_login {
	position: relative;
	
	color: #ffb357;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	width: 100%;
	gap: 1rem;
	box-sizing: border-box;
}

button {
    cursor: pointer;
    width: 100%;
    border: var(--border);
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color_p);
    font-weight: 900;
    font-size: 1.5rem;
}

button:hover {
    background: white;
    color: black;
}

a {
    color: var(--color_p);
}


#imagen {
    border: 1px solid #444;
    background: #2c2c2c;
    width: 10rem;
    height: 10rem;
    border-radius: 99999px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: grey;
    font-weight: bold;
    cursor: pointer;
    overflow: hidden;
    font-size: 1.5rem;
}

#imagen:hover {
    background: #555555;
}


#imagen img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}