.particles {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.wrapper {
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

    width: 40%;
}

.wrapper > .logo > img {
    width: 25%;
    height: auto;
}

/*
    Auth Box
 */

.auth-box {
    display: block;
    padding: 1.3rem;
    font-size: 1.12rem;
    font-weight: 300;
    text-align: center;
    color: #ddd;
    background-color: rgba(0, 0, 0, .12);
    border: 1px solid rgba(0, 0, 0, .24);
}

.auth-button {
    display: inline-block;
    margin-top: 1rem;
    padding: .1em;
    background-color: rgba(0, 0, 0, .16);
    border: 1px solid rgba(0, 0, 0, .26);
    transition: background-color .4s ease;
}

.auth-button:hover,
.auth-button:focus {
    background-color: rgba(0, 0, 0, .20);
    border: 1px solid rgba(0, 0, 0, .30);
}

/*
    Background
 */

body {
    /*background: radial-gradient(ellipse at bottom, #24D189 10%, #5D3BC4 90%) !important;*/
    background: linear-gradient(45deg, #0F2027, #203A43, #2C5364);
    max-height: 100%;
}