html, body {
    height: 100%;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    display: flex;
    flex-direction: column;
    background: #f3f3f3;
}

header {
    background-color: #464646;
    padding: 1em;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
}

.container {
    margin-top: 7rem;
}

.auth-selection-title {
    font-weight: 100;
    font-size: 2.7rem;
    color: #555;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.card {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 0.4em;
    margin-top: 0.4em;
}

.card .card-header {
    height: 64px;
    align-items: center;
    display: flex;
}

.card .card-header img {
    margin-right: 0.75rem;
}

.card {
    background-color: #ffffff !important;
}

.card.carto .card-header {
    background-color: #368;
    font-weight: 400;
    font-size: 1.8rem;
}

.card.carto .card-header img {
    height: 32px;
}

.card.carto .card-header span {
    position: relative;
    top: -2px;
}

.card.loginfvg .card-header {
    background-color: #666643;
}

.card.ldap .card-header {
    background-color: #c18f8f;
}

.card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.card .card-text {
    text-align: justify;
}

.card .btn {
    height: 54px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background-color: #464646;
    border: 1px solid #464646;
}

.btn-secondary:hover {
    background: #222222;
    border: 1px solid #222222;
}

