/* Auth Page Styling */
.page-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.container-tight {
    max-width: 450px;
}

.card-md {
    max-width: 400px;
    margin: 0 auto;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #6e7687;
    text-align: center;
    height: 1.5em;
    opacity: .5;
}

.hr-text:before {
    content: '';
    background: #e4e6ef;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: #6e7687;
    padding: 0 .5em;
    line-height: 1.5em;
    background-color: #f8f9fa;
}

.btn-white {
    background-color: white;
    border: 1px solid #e4e6ef;
}

.btn-white:hover {
    background-color: #f8f9fa;
}

.icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}