#content:has(.register) {
	background-image: url('https://plentyprices.com/wp-content/uploads/2025/05/fondo-login.png');
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center center;
}

.register {
	height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.response-register {
    display: none;
    background-color: #fce7e8;
    color: #792238;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.register-image {
	width: 270px;
    margin-bottom: -70px;
}

.panel-register {
	background: white;
    border-radius: 20px;
    border: 3px solid #E7E9F6;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
}

.panel-register h1 {
	font-size: clamp(1em, 8vw, 2.5em);
}

.input-group-register {
	display: flex;
  	flex-wrap: wrap;
  	gap: 10px;
  	width: 100%;
  	justify-content: space-between;
}

.input-group-register input {
	flex: 1 1 calc(50% - 5px);
	width: 100%;
    padding: 12px 15px !important;
    margin: 10px 0;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #F6F8FF !important;
    color: black;
}

.form-register {
	margin: 0px !important;
}

.form-register button {
	width: 100%;
    border: none;
    border-radius: 20px;
    background: #FF1A7C;
    color: white;
    margin-top: 10px;
    transition: background 0.3s ease;
    font-family: 'Nunito-Regular' !important;
}

.form-register button:hover {
	background-color: #00E9DA;
	color: black;
}

.register-links a {
	color: #333;
    text-decoration: none;
    font-family: 'Nunito-Bold' !important;
}

.register-links a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 48em) {
    .input-group-register {
        flex-direction: column;
        gap: 0;
    }

    .register {
    	height: 100vh;
    }
}