*,
*:after,
*:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto Condensed", sans-serif;
	background-color: rgb(241, 241, 241);
	background-color: rgb(255, 255, 255);
	width: 100%;
	height: 100vh;
	user-select: none;
	-moz-user-select: none;

	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	flex-direction: column;
}

.logo img {
	width: 200px;
}

.container {
	text-align: center;
	margin: 25px auto;
	background-color: #f5f5f5;
	/* Fondo suave */
	border-radius: 10px;
	width: 350px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding-bottom: 25px;
}

h1 {
	padding: 10px 10px 0px 10px;
	font-size: 1.2rem;
}

select {
	width: 250px;
	padding: 0px;
	/* border: none; */
	border-radius: 5px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	color: #333;
	height: auto;
	width: 75%;
}

input {
	height: 35px;
}

button,
.colorBtn {
	background-color: transparent;
	color: rgb(155, 89, 182);
	/* Purple text to match border */
	padding: 10px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	margin: 10px auto;
	cursor: pointer;
	border: 1px solid rgb(155, 89, 182);
	/* Purple border */
	border-radius: 50px;
	/* Pill shape */
	transition: all 0.3s ease;
	width: auto;
	/* Allow auto width for better control */
	min-width: 200px;
	/* Minimum width for consistency */
	letter-spacing: 1px;
	font-weight: bold;
}

button:hover,
.colorBtn:hover {
	color: rgb(142, 68, 173);
	border-color: rgb(142, 68, 173);
	background-color: rgba(155, 89, 182, 0.1);
}

.contenedorBtnCS {
	width: 80%;
	text-align: center;
}

.opcion_lista {
	font-weight: bold;
	margin-bottom: 10px;
}

.lista {
	display: flex;
	height: 40px;
	width: 40%;
	margin: 0 auto;
}

.lista__opc {
	flex-direction: column;
	height: 35px;
	line-height: 40px;
	margin-left: 15px;
}

form {
	margin-top: 15px;
}