﻿body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(28, 114, 208, 0.60), rgba(28, 114, 208, 0)), url('/Images/controllers/account/login/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 350px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25) !important;
}

.login-container.login-page-container {
    background: rgba(0, 0, 0, 0.55) !important;
}

    .login-container .logo{
        text-align:center;
    }

    .login-container .portal-login-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: -30px !important;
    }

        .login-container .portal-login-logo-frame {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 290px;
            height: 106px;
            overflow: hidden;
        }

            .login-container .portal-login-logo-frame img {
                display: block;
                width: 182px;
                height: 182px;
                object-fit: contain;
                transform: scale(1.45);
                transform-origin: center;
                filter: brightness(1.18) contrast(1.06) saturate(1.08) drop-shadow(0 0 8px rgba(255, 255, 255, 0.10));
            }

            .login-container .portal-login-logo-frame img[alt="ORVANA logosu"] {
                width: 272px;
                height: auto;
                transform: translateY(18px);
                filter: brightness(0) invert(1) drop-shadow(0 5px 16px rgba(0, 0, 0, .38));
            }

    .login-container .logo span {
        font-family: "Public Sans";
        font-weight: bold;
        font-size: 1.7rem;
        color: #FFF;
    }

    .login-container .ui.input input {
        background-color: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid transparent !important;
        color: #333 !important;
        font-size: 1em;
    }

    .login-container .login-remember-me label {
        color: #fff !important;
        font-weight: 800 !important;
        letter-spacing: 0.01em;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
    }

    .login-container .login-remember-me input:checked ~ label {
        color: #fff !important;
    }

        .login-container .ui.input input:focus {
            background-color: #ffffff !important;
            box-shadow: 0 0 10px rgba(0, 180, 216, 0.3) !important;
        }

    .login-container .forget-password {
        text-align: center;
        margin-top: 15px;
    }

        .login-container .forget-password a {
            font-size: 1rem;
            color: #FFF;
        }

    .login-container .copyright {
        text-align: center;
        margin-top: 15px;
        color: rgba(255,255,255,0.6);
        font-size: 0.85rem;
    }

        .login-container .copyright .copyright-link {
            color: inherit;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }

            .login-container .copyright .copyright-link:hover,
            .login-container .copyright .copyright-link:focus {
                color: #fff;
                text-decoration: underline;
                text-shadow: 0 0 6px rgba(255,255,255,0.35);
            }
