html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.app {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.app .toolbar {
    display: flex;
    flex-direction: row;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.app .toolbar .logo {
    max-height: 10vh;
    max-width: 60vw;
}

.app .connect-btn {
    position: absolute;
    top: 50vh;
    bottom: 50vh;
    left: 16px;
    right: 16px;
}
.app .content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.input {
    box-shadow: none !important
}
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: #363636;
}
.input:active, .input:focus, .is-active.input, .is-active.textarea, .is-focused.input, .is-focused.textarea, .select select.is-active, .select select.is-focused, .select select:active, .select select:focus, .textarea:active, .textarea:focus {
    border-color: #363636;
    box-shadow: none
}