/* ===============================
   Deusain Private Site Login
=================================*/

body{
    margin:0;
    padding:0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 0, 0, 0.08),
            transparent 65%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0, 0, 0, 0.05),
            transparent 40%
        ),
        linear-gradient(
            90deg,
            #000 0%,
            #191919 35%,
            #1c1c1c 50%,
            #191919 65%,
            #000 100%
        );
}

.dps-login-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background: transparent;
}

.dps-login-box{
    width:100%;
    max-width:430px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(143 143 143 / 30%) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    background: rgb(255 255 255 / 5%) !important;
    padding:30px;
    border-radius:10px;
}

.dps-logo{
    text-align:center;
    margin-bottom:25px;
}

.dps-logo img{
    max-width:200px;
    height:auto;
}

.dps-login-box>p{
    text-align:center;
    color:#ccc;
    margin:12px 0 35px;
}

/* LABEL */

.login-username label,
.login-password label{
    display:block;
    margin-bottom:5px;
    font-weight:400;
    color:#ccc;
    font-size: 12px;
}

/* INPUT */

.login-username input,
.login-password input {
    width:100%;
    height:40px;
    padding:0 18px;
    border: 0;
    border-radius:4px;
    font-size:15px;
    transition:.25s;
    box-sizing:border-box;
    background: #fff;
    color: #000;
    margin-bottom: 15px;
}

.login-username input:focus,
.login-password input:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(47,107,255,.12);
}

/* REMEMBER */
.login-remember{
    margin:18px 0;
    font-size:14px;
}

.login-remember label{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ccc;
}

.login-remember input{
    width:16px;
    height:16px;
}

/* BUTTON */

.login-submit{
    margin-top:25px;
}

.login-submit input{
    width:100%;
    height:40px;
    border:none;
    border-radius:4px;
    background:#df0819;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.login-submit input:hover{
    background:#df0819;
    transform:translateY(-2px);
}

/* ERROR */
.login .message,
.login .error,
.dps-error{
    background: #fdb9b9;
    color: #B42318;
    border-radius: 5px;
    font-size: 15px;
    padding: 3px 18px;
    margin-bottom: 25px;
}

/* LOST PASSWORD */
.login-lost-password{
    margin-top:25px;
    text-align:center;
}

.login-lost-password a{
    color:#2F6BFF;
    text-decoration:none;
    font-size:14px;
}

.login-lost-password a:hover{
    text-decoration:underline;
}

/* PASSWORD */

.login-password{
    position:relative;
}

.login-password input{
    width:100%;
    padding-right:48px;
    box-sizing:border-box;
}

.dps-password-toggle{
    position:absolute;
    top: 32px;
    right:15px;
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#777;
    transition:.25s;
}

.dps-password-toggle:hover{
    color:#111;
}

.dps-password-toggle svg{
    width:22px;
    height:22px;
}

/* MOBILE */
@media(max-width:768px){
    .dps-login-box{
        padding:25px;
    }
}