html,
body {
    height: 100%;
    background-color: #f7fafc;
}


/*Dark mode*/

.dark-mode {
    background-color: black;
    color: white;
}

body.sign__in {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.navbar {
    display: flex;
    justify-content: space-between;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.rel--div {
    position: relative;
}

.abs--btn {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0.5rem 1rem;
    box-shadow: none;
}

.abs--btn:hover {
    box-shadow: none;
}

.abs--btn2 {
    right: 30px;
}

.dropdown-menu {
    background: #fff !important;
}

.navbar-login {
    width: 350px;
    padding: 10px;
    padding-bottom: 0px;
}

.navbar-login-session {
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
}

.icon-size {
    font-size: 87px;
}

.btn {
    border-radius: .25rem !important;
    margin: 0;
}

.notiz-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ededed;
    padding-top: 10px;
}

.notiz-footer p {
    margin: 0;
}

a {
    position: relative;
}

.notiz--badge {
    position: absolute;
    top: -5px;
    border-radius: 50%;
    line-height: 0.9;
    left: 10px;
}

.pwtoclipboard,
.pwtext {
    cursor: pointer;
}


/* Toggle Dark Mode Button*/

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.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%;
}