body {
    background-color: #ff8800 !important;
}

.loginWrapper {
    height: 100vh;
    width: 100%;
}

.v-center {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.form {
    padding: 5rem;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.8);;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.loginButton {
    position: relative;
    margin: auto;
    padding: 19px 22px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

.loginButton span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    vertical-align: middle;
}

.loginButton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: rgba(255, 136, 0, 0.5);
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.loginButton:hover {
    color: white;
}

.loginButton:hover:before {
    width: 100%;
    background: rgba(255, 136, 0, 1);
}

.loginButton:active {
    transform: scale(.96)
}

svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all .3s ease;
}

.loginButton:hover svg {
    transform: translateX(0);
    stroke: white;
}
