/* Vertically center the login card */
.login-pf-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-pf-page .card-pf {
    margin-top: 0;
}

#kc-header {
    display: none;
}

/* mintoku ID branding on Keycloak login page */
.mintoku-id-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.mintoku-id-branding img {
    height: 40px;
    width: auto;
}

/* Back to application link */
.mintoku-back-link {
    text-align: center;
    margin-top: 16px;
}

.mintoku-back-link a {
    color: #6c757d;
    font-size: 14px;
    text-decoration: none;
}

.mintoku-back-link a:hover {
    color: #1a73a7;
    text-decoration: underline;
}

/* Back to login link on password update page */
#kc-form-options {
    margin-top: 2rem;
    text-align: center;
}

#kc-passwd-update-form #kc-form-options a {
    color: #1a73a7;
    font-size: 14px;
}

/* Terms and Privacy notice */
.mintoku-terms-notice {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 12px;
    color: #6c757d;
}

.mintoku-terms-notice a {
    color: #1a73a7;
    text-decoration: none;
}

.mintoku-terms-notice a:hover {
    text-decoration: underline;
}

/* MINTOKU-3778 SNS ログインボタン。現行のログイン画面と同じ大きさ・見た目に揃える。
   Keycloak 既定の .kc-social-item は font-size 15px の小さなボタンのため上書きする。 */
#kc-social-providers .kc-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#kc-social-providers .kc-social-links li {
    width: 100%;
}

#kc-social-providers .kc-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    margin-bottom: 0;
    padding: 14px 16px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

/* PatternFly のボタンは ::after 疑似要素でもう1本の枠線を描く。
   そちらの角丸が 0 のため、角丸の枠に四角い枠が重なって四隅が崩れる。打ち消す。 */
#kc-social-providers .kc-social-item::after {
    border: 0;
    border-radius: 8px;
}

#kc-social-providers .kc-social-item .kc-social-provider-logo {
    font-size: 26px;
    line-height: 1;
}

/* 既定の .kc-social-icon-text は文字を左に 15px ずらすため打ち消す */
#kc-social-providers .kc-social-item .kc-social-provider-name {
    position: static;
    left: auto;
    font-size: 17px;
    font-weight: 700;
    color: #153C4A;
}

/* MINTOKU-3778 Apple は iOS アプリでのみ表示する。
   既定で隠し、テンプレート側の判定で is-ios-app が付いたときだけ出す。 */
#kc-social-providers li.kc-social-apple {
    display: none;
}

#kc-social-providers li.kc-social-apple.is-ios-app {
    display: block;
}

#social-facebook {
    border: 1px solid #1877F2;
}

#social-facebook:hover {
    background-color: #F2F7FE;
}

#social-facebook i {
    color: #1877F2;
}

#social-apple {
    border: 1px solid #111;
}

#social-apple:hover {
    background-color: #F5F5F5;
}

#social-apple i {
    color: #111;
}

/* OTP form buttons center */
#kc-otp-login-form #kc-form-buttons {
    text-align: center;
}

#kc-otp-login-form #kc-form-buttons .kc-form-buttons-wrapper {
    display: inline-block;
}
