html {
    background-image: url(/dashboard/images/tankey-background.jpg)
}

*  {
    font-size: 17px;
    font-family: 'Roboto';
}

a,
label,
input[type=submit] {
    color: white;
}

.dashboard {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.dashboard-feedback {
    width: 35vw;
    color: white;
    display: flex;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    background: #D9534F;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.dashboard-feedback--notice {
    background-color: #0ea000;
}

.dashboard-feedback--alert {
    background-color: #d9534f;
}

.dashboard-logo {
    width: 200px;
    margin: 30px 0;
}

.dashboard-form {
    width: 35vw;
    display: flex;
    margin-bottom: 70px;
    align-items: center;
    flex-direction: column;
}

.dashboard-form > * {
    margin-bottom: 15px;
}

.dashboard-form input[type=text],
.dashboard-form input[type=email],
.dashboard-form input[type=password] {
    width: 100%;
    height: 45px;
    text-align: center;
}

.dashboard-form input[type=submit] {
    width: 100%;
    outline: none;
    padding: 10px 0;
    border-color: transparent;
    text-transform: uppercase;
    background-color: #0ea000;
    -webkit-appearance: none;
    transition: background-color 200ms;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.dashboard-form input[type=submit]:hover {
    cursor: pointer;
    background-color: #0d9600;
}

.dashboard-form input[type=submit]:active {
    background-color: #0d8601;
}

.dashboard-footer-container {
    width: 60vw;
    display: flex;
    margin: 0 auto;
}

.dashboard-footer-container .dashboard-footer-item {
    flex: 1;
    display: flex;
    font-weight: bold;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.dashboard-footer-container .dashboard-footer-item a {
    text-decoration: none;
}

.dashboard-footer-container .dashboard-footer-item img {
    width: 40px;
    margin-bottom: 15px;
}

@media only screen and (max-device-width: 768px) {

    .dashboard-logo {
      margin-top: 30px;
    }

    .dashboard-feedback {
      width: 80vw;
    }

    .dashboard-form {
        width: 80vw;
        margin-bottom: 40px;
    }

    .dashboard-footer-container {
        width: 80vw;
        flex-direction: column;
    }

    .dashboard-footer-container .dashboard-footer-item {
        flex: none;
        margin-bottom: 25px;
    }
}
