body{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0%;
    font-family: sans-serif;
    background-color: #000000;
    color: white;
}

#main{
    padding-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#main2{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 100px;
}

#main3{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

#profile{
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    background-color: #0b1118;
    border-radius: 5px;
    overflow: hidden;

}


#profile-con{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
}

#cam-con{
    border-radius: 50%;
    background-color: #0b1118;
    color: white;
    width: 40%;
    text-align: center;
    padding-top: 10%;
    padding-bottom: 10%;
}

.cam{
    font-size: 80px;
}


.label{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.dark{
    background-color: #0b1118;
}

.light{
    background-color: #121a23;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
  
  /* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
  
/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#password-form{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #0b1118;
    transition: 0.3s;
}

#email-form{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #0b1118;
    transition: 0.3s;
}

#identity-form{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #0b1118;
    transition: 0.3s;
}


#address-form{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #0b1118;
    transition: 0.3s;
}

#password-form-con{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.input{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.input-label{
    font-size: 14px;
}

.input-box{
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: white;
    color: black;
    border-style: none;
    border-radius: 5px;
    width: 100%;
}

#submit{
    background-color: #2d104a;
    color: white;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-style: none;
}

@media screen and (max-width: 700px) {
    #main3{
        width: 99%;
    }
    #profile{
        width: 95%;
    }
}