@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

a, .btn-link { color: #0366d6; }

.btn-primary-login {
    background-color: #1b6ec2;
    border-color: #1861ac;
    color: #fff;
}

.content { padding-top: 1.1rem; }

.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }

.invalid { outline: 1px solid red; }

.validation-message { color: red; }

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Switch */

/* The switch - the box around the slider */

.switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 60px;
}

/* Hide default HTML checkbox */

.switch input {
    height: 0;
    opacity: 0;
    width: 0;
}

/* The slider */

.slider {
    -webkit-transition: .4s;
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    -webkit-transition: .4s;
    background-color: white;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 9px;
    position: absolute;
    transition: .4s;
    width: 16px;
}

input:checked + .slider { background-color: #2196F3; }

input:focus + .slider { box-shadow: 0 0 1px #2196F3; }

input:checked + .slider:before {
    -ms-transform: translateX(26px);
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.slider.round { border-radius: 34px; }

.slider.round:before { border-radius: 50%; }