* {
    box-sizing: border-box;
}
body {
    background-color: #f2f2f2;
/*    background-image: url(/assets/img/login-bg1.jpg);*/
    background-position: center;
    background-size: cover;
}
.content {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
}
.logo {
    max-width: 130px;
}
.links {
    max-width: 400px;
    display: flex;
    padding: 10px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.btn {
    text-decoration: none;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 500;
    font-size: .85rem;
    color: #242424;
    background-color: #dbdbdb;
    width: 100%;
    display: flex;
    padding: 16px 24px;
    border-radius: 5px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
    opacity: .9;
}
.btn:hover {
    opacity: 1;
}
.btn i {
    margin-right: 10px;
}
.btn.btn-primary {
    background-color: #52658C;
    color: #f2f2f2;
}
.btn.btn-primary i {
    color: #fff;
}
.btn.btn-black {
    background-color: #242424;
    color: #f2f2f2;
}
.btn.btn-black i {
    color: #fff;
}