:root{
    --green: #1ce783;
    --light-green: rgb(0, 255, 191);
    --light: #f6f7f8;
    --dark: #0b0c0f;
    --light-blue: #272c34;
    --grey: #a8afbd;
}

*, *::before, *::after{
    
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    position: relative;
    width: 100vw;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

button{
    padding: 15px 25px;
    background-color: transparent;
    border: 2px transparent;
    border-radius: 4px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 250ms,color 250ms;
    cursor: pointer;
}

button:hover{
    opacity: .7;
}

button:active{
    opacity: .6;
}

.green-button{
    background-color: var(--green);
    color: var(--dark);
}

.transparent-button{
    color: white;
    background-color: transparent;
    border: 2px solid white;
}

.transparent-button:hover{
    color: var(--dark);
    background-color: var(--light-green)
}


.check-box {
	transform: scale(2);
    width: 50px;
}

input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 25px;
    height: 15px;
    background: #555555;
    border-radius: 50px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.4s;
}

input:checked[type="checkbox"] {
    background: var(--green);
}

input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    transition: 0.4s;
}

input:checked[type="checkbox"]::after {
    left: 50%;
}
