/* base custom CSS style */
/* most page commonly has */
.logout-container {
    position: absolute;
    top: 20px;
    right: 20px;
}
.login-welcome{
    color: whitesmoke;
}
.form-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}
.form-switch input {
    display: none;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #0d6efd;
}
input:checked + .slider:before {
    transform: translateX(25px);
}