﻿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 .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 .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;
    }
