.login-bg {
    background: url(/Images/LoginBackground.png) top center no-repeat;
    background-size: cover;
}

.login-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
}

.login-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
}

.login-logo img {
    display: block;
    height: 48px;
    width: auto;
}

.login-lang {
    position: relative;
}

.login-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    cursor: pointer;
}

.login-lang-flag {
    display: block;
    height: 20px;
    width: auto;
    border-radius: 3px;
}

.login-lang-caret {
    font-size: .85rem;
    color: #3a1418;
}

.login-lang-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 60px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,.15);
    z-index: 10;
}

.login-lang-menu li {
    display: flex;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.login-lang-menu li:hover {
    background: #f1ece2;
}

.login-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px 40px;
}

.login-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
}

.login-eyebrow {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 2px;
}

.login-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #3a1418;
    margin: 0 0 24px;
}

.login-description {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px;
}

.login-input {
    display: block;
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #f1ece2;
    padding: 14px 20px;
    font-size: 1.15rem;
    color: #333;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.login-input::placeholder {
    font-weight: 700;
}

.login-alert {
    font-size: 1.05rem;
    margin: 14px 0 0;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fdecea;
    color: #b3261e;
}

.login-note {
    font-size: 1rem;
    color: #333;
    margin: 14px 0 0;
}

.login-submit {
    margin-top: 24px;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 999px;
    padding: 16px;
    background: linear-gradient(90deg, #f2905f, #e2432c);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(226,67,44,.35);
    cursor: pointer;
}

.login-link {
    display: block;
    margin-top: 16px;
    font-size: 1.05rem;
    color: #3a1418;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.login-link-icon {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 4px;
}

.login-page[data-lang="en-GB"] .lang-da {
    display: none;
}

.login-page:not([data-lang="en-GB"]) .lang-en {
    display: none;
}
