/* Standard Dekstop Styling */
html {
    height: -webkit-fill-available; /* Prevent mobile webkit browsers from dropping footer behind the navigation bar */
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available; /* Prevent mobile webkit browsers from dropping footer behind the navigation bar */
}

.container-login,
.footer {
    max-width: 720px;
}

.container-login {
    min-height: 405px;
}

.box-logo {
    width: 40%;
}

.logo {
    object-fit: contain; /* Logo contains aspect ratio */
    max-width: 405px; /* Prevent horizontal logo going too big on large mobile screens */
    max-height: calc(405px - 3rem); /* Container height minus container padding */
}

/* poSell markası — giriş ekranı varsayılan logosu (kiracı kendi logosunu yüklerse
   img.logo dalı çalışır ve bunlar hiç görünmez).
   Renkler tanıtım sayfasıyla aynı: lacivert #14304f + teal. Tanıtımdaki webfont burada
   YÜKLENMİYOR (giriş sayfası dış kaynak çekmemeli — CSP ve çevrimdışı kasa senaryosu),
   o yüzden sistem yazı tipi yığınına düşülüyor. */
.brandtype {
    font-family: "Familjen Grotesk", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.035em;
    line-height: 1;
    color: #14304f;
}

.brandtype-s {
    color: #0f9b85;
}

/* Amblem kare (120x120); .logo'nun 405px sınırı yatay logolar içindi ve kare amblemi
   devasa gösteriyordu. */
svg.logo {
    max-width: 160px;
}

img.logo {
    filter: drop-shadow(1px 0 0 rgba(255, 255, 255, 0.87)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.87)) drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.87)) drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.87)); /* White border around Company Logo for correct display on darker themes */
}

.box-login {
    width: 60%;
}

.box-login form {
    width: 100%; /* Login box content full width */
}

.box-login .form-floating:focus-within,
.box-login .input-group:focus-within {
    z-index: 2;
}

.box-login input[name="username"],
.box-login span[id="input-username"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.box-login input[name="password"],
.box-login span[id="input-password"] {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.alert div:not(:first-child) {
    margin-top: 1rem; /* Space between multiple validation errors */
}

.bi {
    height: 1em;
}

footer a:not(:hover) {
    text-decoration: none;
}

/* Mobile Styling */
@media (max-width: 767.98px) {
    .container-login {
        min-height: auto;
    }

    .box-logo,
    .box-login {
        width: 100%;
    }

    .box-logo {
        border-right: none !important;
    }

    .logo {
        max-height: 150px;
    }

    svg.logo {
        max-width: 110px;
    }

    .brandtype {
        font-size: 1.4rem;
    }

    .footer {
        max-width: 100%;
        border-radius: 0 !important;
    }
}

/* QHD Styling */
@media (min-width: 2560px) {
    .container-login,
    .footer {
        max-width: 960px;
    }

    .container-login {
        min-height: 540px;
    }

    .logo {
        max-height: calc(540px - 3rem);
    }
}

/* 4K Styling */
@media (min-width: 3840px) {
    .container-login,
    .footer {
        max-width: 1140px;
    }

    .container-login {
        min-height: 641.25px;
    }

    .logo {
        max-height: calc(641.25px - 3rem);
    }
}

/* Specific Styling */
@media (max-width: 359.98px) {
    .g-recaptcha {
        overflow-x: auto; /* Makes sure reCAPTCHA is usable on the smallest screens */
        min-height: 86px;
    }
}
