@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    padding: 40px;
}
.formulario{
    background: #fff;
    padding: 25px;
    width: 520px;
    border-radius: 10px;
    box-shadow: 0, 0, 10px, rgba(0, 0, 0, 0.1);
}
h2{
    text-align: center;
}
label{
    font-weight: 600;
}
.texto, select, textarea{
    width: 100%;
    padding: 8px;
    margin: 6px 0 15px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.checkbox-group label{
    font-weight: 500;
    margin-bottom: 5px;
}
.checkbox-group .group{
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
}
.group input{
    position: relative;
    height: 40px;
    width: 90px;
    outline: 90px;
    background: #e6e6e6;
    -webkit-appearance: none;
    border-radius: 50px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.group input:checked{
    background: #664AFF;
}
.group input:before{
    height: 100%;
    width: 40px;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(#fff, #f2f2f2, #e6e6e6, #d9d9d9);
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: scale(0.85);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.group .label:before{
    content: "Desabilitada";
    font-size: 15px;
    font-weight: 500;
    color: #bfbfbf;
}
.group input:checked:before{
    left: 50px;
}
.group input:checked ~ .label:before{
    content: "Habilitada";
    color: #664AFF;
}
.hidden{
    display: none;
}
button{
    background:#2c3e50;
    color:white;
    padding:10px;
    border:none;
    width:100%;
    border-radius:5px;
    cursor:pointer;
}
button:hover{
    background:#34495e;
}