body.autologin {
    margin: 0;
    background-image: url('../images/drupal.svg'), url('../images/d11background.jpg');
    background-position: bottom -50px left -50px, center center;
    background-repeat: no-repeat;
    background-size: auto 50%, cover;
    font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

html, body, .dialog-off-canvas-main-canvas {
    height: 100%;
}

.pane {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 450px;
    animation-duration: .5s;

    animation-name: hello;
    animation-timing-function: ease;
    align-items: center;
    justify-content: center;
}

@keyframes hello {
    from { transform: translateX(100%); }

    to { transform: translateX(0); }
}

.box {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .3);

    background-image: url('../images/d11logo.svg');
    background-position: bottom 20px center;
    background-repeat: no-repeat;
    background-size: 50% auto;
    color: white;
    border-spacing: 0;
}

.content {
    height: 100%;
    width: 70%;
    padding: 30px;
    vertical-align: top;
}

.tasks {
    padding: 0;
    vertical-align: top;
}

.tasks ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tasks li {
    margin: 0;
    padding: 10px 30px;
}

.tasks li a {
    transition: color .3s ease;
    outline: 0;
    color: white;
    text-decoration: underline;
}

.visually-hidden {
    display: none;
}

.tasks li a:hover,
.tasks li a:focus {
    color: #19afff;
}

.tasks li.is-active {
    display: none;
}

.title {
    padding: 20px 30px;
    padding-top: 30px;
    font-size: 30px;
    font-weight: normal;
}

.title-underline {
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.title-inner {
    display: inline-block;
    padding-right: 20px;
}

#edit-name--description {
    display: none;
}

#edit-pass--description {
    display: none;
}

.form-actions {
    margin-top: 30px;
}

input[type='submit'] {
    transition: background-color .3s ease,color .3s ease;
    margin-top: 10px;
    border: 0;
    outline: 0;
    padding: 10px 30px;
    background-color: white;
    color: #303030;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
}

input[type='submit']:hover, input[type='submit']:focus {
    background-color: #19afff;
    color: white;
}

form .form-item {
    overflow: hidden;
    margin-bottom: 20px;
}

form label {
    display: inline-block;
    min-width: 130px;
    margin-right: 10px;
    padding: 5px 0;
    font-size: 16px;
}

summary {
    display: none;
}

form input[type='text'],
form input[type='email'],
form input[type='password'],
form select {
    max-width: 100%;
    transition: border .3s ease;
    box-sizing: border-box;
    border: 3px solid transparent;
    outline: 0 !important;
    padding: 10px;
    color: black;
    filter: none;
    font-size: 16px;
}

form input[type='text']:focus,
form input[type='email']:focus,
form input[type='password']:focus {
    border: 3px solid #19afff;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

.user-pass p {
    font-size: .8em;
}
