@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.controller {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8f8;

}

.content-wrapper {
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
    align-items: center;
    padding-bottom: 20px;
}

.formulario {
    width: 60%;
}

h4 {
    font-weight: 600;
    font-size: 25px;
    color: #333;
}

label {
    color: #333;
}

.mb-custom {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 350px;
    height: auto;
}





/* radio */

.checkbox{
	width: 100%;
	display:flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row-reverse;
	margin: 10px;
	font-size: 14px;
	cursor: pointer;
}
.checkbox input{
	display:none;
	width: 0;
	height: 0;
}
.checkbox span{
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2%;
	background-color: #bdbdbd;
}
.checkbox input:checked + span:after{
	content: "✔";
	display: block;
	width: 17px;
	height: 27px;
	font-size: 20px;
	color: #ffffff;
}
.checkbox input:checked + span {
	background-color: #df0917;
}
.checkbox input:disabled + span {
	background-color: #e5e5e5;
}
.checkbox span:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	border-radius: 2%;
	background-color: #df0917;
}
.checkbox input:checked + span:before {
	animation: growAndFade 0.2s ease-out;
} 
@keyframes growAndFade {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}
}