*{
    padding: 0;
    margin: 0;

}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #a38e32 0%, #dd1e87 100%);

}


main {
    background-color: rgba(0, 0, 0, 0.479);
    width: 600px;
    max-width: 90%;
    height: 500px;
    border-radius: 10px;
    
}

form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-container{

    width: 310px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 1px;
}

.input-container > input {
    width: 300px;
    max-width: 90%;
    font-size: 20px;
    height: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
}

.input-container > label.styled {
    font-size: 22px;
    margin-bottom: 10px;
    color: aliceblue;
    text-transform: capitalize;
}

.last {
    margin: 15px 0px;
    margin-right: 100px;
    width: 90px;
}

#chk, #chk2 {
    display: none;
    
}

.switch {
    position: relative;
    background-color: #777;
    width: 50px;
    height: 20px;
    border-radius: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: start;
    padding: 5px;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.switch > p {
    position: absolute;
    width: 100px;
    color: white;
    left: 70px;
    font-size: 18px;
    color: rgb(170, 166, 166);
}

.slider {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: all .5s ease-in-out;
}

#chk:checked ~ .switch {
    background-color: blueviolet;
}
#chk:checked ~ .switch .slider {
    transform: translate(30px);
}

#chk2:checked ~ .switch {
    background-color: blueviolet;
}

#chk2:checked ~ .switch .slider {
    transform: translate(30px);
}

button {
    background-color: black;
    max-width: 90%;
    color: rgb(202, 60, 195);
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    letter-spacing: 2px;
    font-weight: bolder;
    font-size: 16px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.158);
    color: rgb(233, 111, 227);
   
}