﻿body {
    /*background: url('../img/hexagonal1.jpg') no-repeat;*/
    background-image: url('../assets/img/bg/abrback4.jpg');
    background-size: cover;
    /* keep the inherited backound full size */
    background-attachment: fixed;
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loginbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 454px;
    height: 601px;
    padding: 80px 40px;
    border-radius: 5px;
    box-sizing: border-box;
    /*background: rgb(69, 106, 181, 0.50);*/
    background: rgb(255, 255, 255, 0.70);
    box-shadow: 0 0 1rem 0 rgba(0,0,100,.5);
}

.user {
    width: 27%;
    height: 20%;
    overflow: hidden;
    top: -44px;
    left: 190px;
    position: absolute;
}

.container {
    width: 30rem;
    height: 20rem;
    box-shadow: 0 0 1rem 0 rgba(255,255,255,.5);
    position: relative;
    background: inherit;
    /*overflow:hidden;*/
    border-radius: 5px;
    z-index: 1;
}

    .container::before {
        content: "";
        position: absolute;
        background: inherit;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: inset 0 0 2000px rgba(255,255,255,.5);
        filter: blur(20px);
        margin: -20px;
        z-index: 1;
    }

.inner_div {
    background: #ffffff33;
    border-radius: 10px;
    box-shadow: 0 4px 30px #0000001a;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 0 2000px #dbdbdb80;
    filter: blur(1px);
}

h2 {
    padding: 0;
    margin: 0;
    text-align: center;
    color: rgba(72, 245, 170, 0.50);
}

.lblpass, .lbluser {
    font-weight: bold;
    font-size: 20px;
    /*color: #fff;*/
    color: #1073ba;
}

.txtuser, .txtpass, btnsubmit {
    width: 100%;
    margin-bottom: 30px;
}

.txtuser, .txtpass {
    /*border: none;*/
    border: 1px solid #FF4B2B;
    /*border-bottom: 3px solid #fff;*/
    outline: none;
    height: 50px;
    /*color: rgb(231, 238, 57);*/
    color: #132589;
    font-size: 18px;
    text-align: center;
    /*background-color: transparent;*/
    background-color: rgb(255, 255, 255, 0.30);
    border-radius: 50px;
}

    .txtuser:hover {
        border: 1px solid #0026ff;
        background-color: rgb(11, 178, 242, 0.30);
    }


    .txtpass:hover {
        border: 1px solid #0026ff;
        background-color: rgb(11, 178, 242, 0.30);
    }

::placeholder {
    /*color: rgba(255,255,255,.5);*/
    color: #1073ba;
}

.btnsubmit {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    outline: none;
    height: 40px;
    font-size: 18px;
    /*color: #fff;*/
    color: rgba(255,255,255,.5);
    background-color: rgba(255,9,9,.92);
    cursor: pointer;
    border-radius: 20px;
    transition: .3s ease-in-out
}

.btnsubmit:hover {
background-color: rgb(0, 148, 255);
}

.btnforget {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #efaf2c;
}

    .btnforget:hover {
        text-decoration: underline;
    }
