/* -------------------------------------------------------------------------- */
/*                          FORMULARIO DE PRESUPUESTO                         */
/* -------------------------------------------------------------------------- */
.fondo {
	background-color: #f4cd40;
	padding: 1rem;
}
.dividir {
	display: flex;
	justify-content: space-between;
}
.container {
	position: relative;
	max-width: 430px;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.container .forms {
	display: flex;
	align-items: baseline;
	height: 800px;
	width: 200%;
	transition: height 0.2s ease;
}

.container .form {
	width: 50%;
	padding: 30px;
	background-color: #fff;
	transition: margin-left 0.18s ease;
}

.container.active .login {
	margin-left: -50%;
	opacity: 0;
	transition: margin-left 0.18s ease, opacity 0.15s ease;
}

.container .signup {
	opacity: 0;
	transition: opacity 0.09s ease;
}
.container.active .signup {
	opacity: 1;
	transition: opacity 0.2s ease;
}

.container.active .forms {
	height: 850px;
}
.titulo-presupuesto {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.container .form .titulo-presupuesto .title {
	position: relative;
	font-size: 27px;
	font-weight: 600;
}

.container .form .titulo-presupuesto .btnjuridico,
.container .form .titulo-presupuesto .btnNatural {
	background-color: #f4cd40;
	padding: 10px;
	border-radius: 56px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.19s ease;
}
.container .form .titulo-presupuesto .btnjuridico:hover,
.container .form .titulo-presupuesto .btnNatural:hover {
	background-color: #ffdf6a;
}

.form .title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 30px;
	background-color: #f4cd40;
	border-radius: 25px;
}

.form .input-field {
	position: relative;
	height: 50px;
	width: 100%;
	margin-top: 5px;
}
.form .input-field select {
	width: 100%;
	background-color: #f4cd40;
	font-size: 16px;
	font-weight: 600;
	padding: 5px;
}

.input-field input {
	position: absolute;
	height: 100%;
	width: 100%;
	padding: 0 35px;
	border: none;
	outline: none;
	font-size: 16px;
	border-bottom: 2px solid #ccc;
	border-top: 2px solid transparent;
	transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) {
	border-bottom-color: #f4cd40;
}

.input-field i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 23px;
	transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i {
	color: #f4cd40;
}

.input-field i.icon {
	left: 0;
}
.input-field i.showHidePw {
	right: 0;
	cursor: pointer;
	padding: 10px;
}

.form .checkbox-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.checkbox-text .checkbox-content {
	display: flex;
	align-items: center;
}

.checkbox-content input {
	margin: 0 8px -2px 4px;
	accent-color: #f4cd40;
}

.form .text {
	color: #333;
	font-size: 14px;
}

.form a.text {
	color: #f4cd40;
	text-decoration: none;
}
.form a:hover {
	text-decoration: underline;
}

.form .button {
	margin-top: 35px;
}

.form .button input {
	border: none;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: 6px;
	background-color: #f4cd40;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 100px;
}

.button input:hover {
	background-color: #1e1f1f;
}

.form .login-signup {
	margin-top: 30px;
	text-align: center;
}

.area {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 100px;
	max-height: 140px;
}
/* ------------------------ FORMULARIO DE PRESUPUESTO ----------------------- */

.redes i {
	color: #f6f6f6;
	font-size: 1.2rem;
	padding-right: 10px;
}
.redes i:hover {
	cursor: pointer;
	color: #f4cd40;
}

.error {
	position: absolute;
	font-size: 14px;
	background-color: #f24f4f;
	color: #f6f6f6;
	padding: 5px;
	border-radius: 10px;
	display: block;
	right: -5px;
	top: 1%;
	z-index: 3;
	width: 186px;
	text-align: center;
	box-shadow: 0 2px 5px rgb(0 0 0 / 25%);
}
.error::before {
	position: absolute;
	content: '';
	height: 10px;
	width: 10px;
	background-color: #f24f4f;
	left: -2px;
	top: 42%;
	transform: rotate(-45deg) translateY(-50%);
}
.errorArea {
	position: relative;
	font-size: 14px;
	background-color: #f24f4f;
	color: #f6f6f6;
	padding: 5px;
	border-radius: 2px;
	display: block;
	left: 0;
	z-index: 3;
	width: 100%;
	text-align: center;
	box-shadow: 0 2px 5px rgb(0 0 0 / 25%);
}

.exitoArea {
	position: relative;
	font-size: 13px;
	background-color: #83c96e;
	color: #f6f6f6;
	padding: 5px;
	/* margin: 4px; */
	border-radius: 0 0 10px 10px;
	display: block;
	left: 0;
	z-index: 3;
	width: 100%;
	text-align: center;
	box-shadow: 0 2px 5px rgb(0 0 0 / 25%);
}

.presupuesto_alerta {
	text-align: center;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.509);
}
.swal-button {
	background-color: #f4cd40;
	width: 100%;
	color: #1f1f1f;
	outline: none;
}
.swal-footer {
	text-align: center;
}
.swal-button:not([disabled]):hover {
	background-color: #222123;
	color: #f4cd40;
	outline: none;
}
.swal-button:focus {
	box-shadow: none;
}

.swal-button-container {
	width: 100%;
}
.swal-title {
	font-size: 3rem;
}
.swal-text {
	text-align: center;
	font-size: 1.1rem;
}
