/* v2 */
/* Colours */
.arb-bg-primary {
    background-color: #ffd700;
}

.arb-bg-black {
    background-color: #000000;
}

.arb-bg-secondary {
    background-color: #093650;
}

/* Utils */
.arb-h-40 {
    height: 40px;
}

/* Page */
html, body {
    font-family: Calibri, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
}

#api {
    text-align: center;
}

.intro {
    display: none;
}

.divider {
    display: none;
}

.heading {
    margin-bottom: 2rem;
}

/* Forms */
.entry-item {
}

.entry-item {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    text-align: left;
    font-weight: 600;
}

.itemLevel p {
    margin-bottom: 0;
}

.error {
    color: #fe5555;
    font-weight: 500;
}

#password, #email {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#next {
    color: #fff !important;
    background-color: #093650 !important;
    border-color: #093650 !important;
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    margin-right: 10px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    #next:not(:disabled):not(.disabled) {
        cursor: pointer;
    }

    #next:hover {
        color: #000 !important;
        background-color: #ffd700 !important;
        border-color: #ffd700 !important;
    }

.buttons {
    margin-top: 1rem;
}

.entry {
    margin-bottom: 5px;
}

.create p a {
    display: block;
}

#forgotPassword {
    float:right;
}