﻿body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh;
}

.gallery-container {
    position: fixed;
    top: 0;left: 0;
    width: 100%;height: 100vh;
    overflow-x: hidden;    
    z-index: 0;
    direction:ltr;
}

.gallery {
    display: flex;
    height: 100vh;
    position: absolute;
}

.gallery img {
    height: 100%;
    flex-shrink: 0;
    border: none;
}










.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    /*width: 200%;height: 100%;*/
    width: 100%;height: 100vh;
    background-image: url('/Images/login-bg.jpg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    z-index: 0; /* Place behind all content */
    animation: slideBackground 200s linear infinite;
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 500% 0;
    }
}

@keyframes slideBackground1 {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}



.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100vw;
}
.login-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffD0;
    backdrop-filter: blur(10px); /* optional for modern frosted effect */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}
.login-right {
    flex: 3;
}


.login-box {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    text-align: center;
}

.row {
    width: 100%
}

.family-name {
    width: 180px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.login-logo {
    width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 5px;
}

h2 {
    font-size: 16px;
    color: #888;
    margin-bottom: 8px;
}


.login-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.DialogContent.Content.LogonContent {
    background-color: white;
    height: 234px;
}


.Logon {
    width: 400px;
    text-align: left;
}

    .Logon .Item,
    .Logon span,
    .Logon label,
    .Logon a,
    .Logon .GroupHeader,
    .Logon .StaticText,
    .Logon .TextCell,
    .Logon .Layout .Caption,
    .Logon input {
        font-family: "Sakkal Majalla",Verdana,Geneva,sans-serif;
        font-size: 24px;
        font-weight: bold;
        text-align: right;
    }

#Logon_UPHeader {
    display: none;
}

.HItem.FirstColumn.GroupContent { display: none;}

.Caption { width: 110px !important;} 

