/**
 * Login / şifre sıfırlama — iOS PWA tam ekran (görünüm aynı: eğri mavi + beyaz panel)
 */
html.ik-auth-html,
html.ik-auth-html body.ik-auth-page {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    height: -webkit-fill-available;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    overflow: hidden;
    background: #1E40AF;
}

#ik-login-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #1E40AF;
    height: 100%;
    min-height: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: 0;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: none;
}

#ik-login-shell .ik-login-hero-slot {
    flex: 0 0 38%;
    min-height: 200px;
    max-height: 42vh;
    background: #1E40AF;
}

#ik-login-shell .ik-login-form-slot {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}

#ik-login-shell .ik-login-form-slot form {
    flex: 1 1 auto;
    min-height: 0;
}

#ik-login-shell .ik-login-footer {
    flex-shrink: 0;
    margin-top: auto;
}

