
.logo{
    text-align:center;
    display: inline-block;
    max-width: 170px;
    padding: 10px 20px;
    margin: auto;
}

.title{
    margin-top: 25px;
    max-width: 300px;
    display: block;
    margin: auto;
}

/* HEADER */
.logo h2{

    font-family: 'Tajawal', sans-serif;
    font-size:32px;
    font-weight:100;
}

.logo p{
    font-size:13px;
    opacity:0.7;
}

body{
    margin:0;
    font-family: 'Tajawal', sans-serif;

    min-height:100vh;

    background:
    radial-gradient(circle at top,
        rgba(25,197,178,0.20),
        transparent 60%),

    radial-gradient(circle at bottom,
        rgba(0,0,0,0.9),
        #0b1220);

    color:#fff;

    overflow:hidden;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;
}

/* SOFT ISLAMIC GLOW SHAPES */
.bg-glow::before,
.bg-glow::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.3;
}



.bg-glow::after{
    background:#4de8cf;
    bottom:-120px;
    right:-120px;
}

.login-box{
    width:470px;
    padding:30px 35px;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:24px;

    backdrop-filter:blur(14px);
    box-shadow:0 20px 60px rgba(0,0,0,0.4);

    z-index:2;
    position:relative;
}


/* INPUTS */
.input-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:14px;

    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:15px;
}

.input-box i{
    opacity:0.7;
}

.input-box input{
    width:100%;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
}

.input-box input::placeholder{
    color:rgba(255,255,255,0.5);
}

input:-internal-autofill-selected {    
    background-color: transparent; !important;    
}
/* BUTTON */
.login-btn{
    width:100%;
    height:52px;

    border:none;
    border-radius:14px;

    background:#19c5b2;
    color:#fff;

    font-size:16px;
    font-weight:600;

    transition:0.25s ease;
}

.login-btn:hover{
    background:#14b09f;
    transform:translateY(-2px);
}

/* FOOTER */
.footer-text{
    text-align:center;
    margin-top:18px;
    font-size:12px;
    opacity:0.7;
}

/* PARTICLE BACKGROUND */

#particles-js{

    position:fixed;

    inset:0;

    width:100%;
    height:100%;


}

/* KEEP LOGIN ABOVE PARTICLES */

.login-box{
    position:relative;
    z-index:2;
}

.message{
    display: block;
    font-size: 12px;
    text-align: right;
    color: #ccc;
    margin-bottom: 11px;
}