* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
position: relative;
background: aquamarine;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.container .toggle {
position: absolute;
top: 0;
left: 0;
width: 90px;
height: 40px;
background: rgb(8, 0, 15);
border-radius: 55px;
cursor: pointer;
transition: 0.3;
}
.container .toggle .toggle-btn {
position: absolute;
top: 5px;
left: 5px;
width: 40px;
height: 30px;
background: rgb(132, 115, 148);
border-radius: 25px;
transition: 0.3;
}
.container .toggle.active {
background:whitesmoke;
}
.container .toggle.active .toggle-btn {
left: 40px;
}
.text {
position: absolute;
left: 2.5cm;
font-size: 1.5rem;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin-left: 8px;
}