﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',Arial,sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: auto;
    background: #111;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Content/image/adele.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

    .background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.35);
    }

.glass {
    width: 700px;
    max-width: 95vw;
    padding: 30px 55px;
    border-radius: 36px;
    background: rgba(25,20,16,.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.logo-area {
    text-align: center;
    margin-bottom: 22px;
}

.logo {
    width: 280px;
    max-width: 100%;
}

.subtitle {
    color: #D9AA58;
    font-size: 15px;
    letter-spacing: 4px;
    margin-top: 10px;
}

.textbox {
    position: relative;
    margin-bottom: 18px;
}

    .textbox input {
        width: 100%;
        height: 60px;
        padding-left: 65px;
        padding-right: 65px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.15);
        background: rgba(255,255,255,.10);
        color: #fff;
        font-size: 19px;
        outline: none;
        transition: .3s;
    }

        .textbox input::placeholder {
            color: rgba(255,255,255,.65);
        }

        .textbox input:focus {
            border-color: #D9AA58;
            background: rgba(255,255,255,.15);
        }

    .textbox i:first-child {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        color: #D9AA58;
        font-size: 24px;
    }

#togglePassword {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #D9AA58;
    font-size: 23px;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    height: 58px;
    margin-top: 6px;
    border-radius: 18px;
    border: 1px solid rgba(217,170,88,.35);
    background: rgba(217,170,88,.18);
    color: #F5D79A;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

    .login-btn:hover {
        background: rgba(217,170,88,.28);
    }

.forgot {
    text-align: center;
    margin: 18px 0;
}

    .forgot a {
        color: #D9AA58;
        text-decoration: none;
        font-size: 18px;
    }

.line {
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 20px 0;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.clock,
.date {
    display: flex;
    align-items: center;
    color: #fff;
}

    .clock i,
    .date i {
        color: #D9AA58;
        font-size: 34px;
        margin-right: 12px;
    }

#time {
    font-size: 34px;
    font-weight: 300;
}

#date {
    font-size: 16px;
    line-height: 22px;
}

.footer {
    margin-top: 22px;
    text-align: center;
    color: rgba(255,255,255,.70);
    font-size: 15px;
}

    .footer span {
        margin: 0 10px;
    }

.login-error {
    background: #b00020;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
}

@@media(max-width:768px) {

    body {
        padding: 15px;
    }

    .glass {
        width: 100%;
        padding: 25px;
    }

    .logo {
        width: 220px;
    }

    .bottom {
        flex-direction: column;
        gap: 15px;
    }

    #time {
        font-size: 28px;
    }
}

