/* Reset ---------------- */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    background: #ffffff;
    font: 400 14px Arial, "Segoe UI", "Helvetica Neue", sans-serif;
    height: 100%;
}

/* Content ---------------- */

.content-holder {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.content {
    flex: 0 0 auto;
    width: 480px;
}

h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.5px;
    margin-bottom: 30px;
}

a {
    display: block;
    position: relative;
    color: #101112;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    height: 70px;
    line-height: 70px;
    padding-left: 80px;
    margin-bottom: 15px;
    transition: border-color .3s, color .3s;
    text-decoration: none;
}

.icon-employee {
    background: url(../i/icon-employee.png) 27px center no-repeat;
}

.icon-partner {
    background: url(../i/icon-partner.png) 22px center no-repeat;
}

a:hover {
    border-color: #a7afb7;
    color: #2c8ef2;
}

a:after {
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 15px;
    transition: opacity .3s, right .3s;
    content: '';
    background: url(../i/icon-arrow.svg) center center no-repeat;
    height: 12px;
    width: 7px;
    opacity: 0;
}

a:hover:after {
    right: 20px;
    opacity: 1;
}

p {
    color: #888888;
    background: url(../i/icon-note.png) left center no-repeat;
    padding-left: 40px;
    margin-top: 55px;
    line-height: 130%;
}

.error {
    color: #f22c51;
    background: url(../i/icon-padlock.svg) left center no-repeat #fed5dc;
    margin-top: 55px;
    background-position: 25px;
    padding: 25px 25px 25px 60px;
    line-height: 130%;
    font-size: 15px;
}

/* Mobile ---------------- */

@media all and (max-width: 480px) {
    .content {
        margin: 30px;
        width: 100%;
    }
}
