/* AMRO Air account pages */

.auth-page {
    min-height: 100%;
    color: #333;
    background:
        linear-gradient(rgba(15, 20, 25, .72), rgba(15, 20, 25, .82)),
        url("../images/665cw_sunset.jpg") center / cover fixed;
}

.auth-navbar {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .96);
}

.auth-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    height: 58px;
    color: #f05f40;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.auth-navbar .navbar-brand:hover,
.auth-navbar .navbar-brand:focus {
    color: #eb3812;
}

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 58px);
    padding: 45px 15px;
}

.auth-card {
    width: 100%;
    max-width: 540px;
    padding: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .3);
    text-align: center;
}

.auth-card h1 {
    margin-top: 15px;
    font-size: 36px;
    font-weight: 700;
}

.auth-card .lead {
    color: #666;
    font-size: 17px;
    line-height: 1.65;
}

.auth-mark {
    color: #f05f40;
    font-size: 48px;
}

.auth-action {
    margin: 22px 0 14px;
}

.auth-note {
    margin: 18px 0 0;
    color: #777;
    font-size: 13px;
}

.auth-alert {
    margin-top: 18px;
}

.auth-profile {
    text-align: left;
}

.auth-profile-header {
    margin-bottom: 28px;
    text-align: center;
}

.auth-detail {
    padding: 16px 0;
    border-top: 1px solid #eee;
}

.auth-detail:last-of-type {
    border-bottom: 1px solid #eee;
}

.auth-detail-label {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.auth-detail-value {
    overflow-wrap: anywhere;
    font-size: 16px;
}

.auth-coming-soon {
    margin: 26px 0;
    padding: 18px;
    border-radius: 8px;
    background: #f7f7f7;
}

.auth-coming-soon h3 {
    margin-top: 0;
    font-size: 18px;
}

.auth-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 22px;
    border: 4px solid #eee;
    border-top-color: #f05f40;
    border-radius: 50%;
    animation: auth-spin .8s linear infinite;
}

@keyframes auth-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .auth-card {
        padding: 30px 22px;
    }

    .auth-card h1 {
        font-size: 30px;
    }
}
