/* =====================================================
   ROVELLO DESK LOGIN
   Premium Business UI
===================================================== */

.login-wrapper{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #071C3A 0%,
    #0D2B52 45%,
    #1B4A7D 100%);
}

/* ==========================
   Floating Shapes
========================== */

.bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.28;
    animation:float 12s infinite ease-in-out;
}

.shape-1{

    width:320px;
    height:320px;

    background:#FF6B1A;

    top:-120px;
    left:-80px;

}

.shape-2{

    width:450px;
    height:450px;

  background:#2D7FF9;

    right:-180px;
    bottom:-180px;

    animation-delay:3s;

}

.shape-3{

    width:220px;
    height:220px;

    background:#FFA24A;

    left:45%;
    top:55%;

    animation-delay:6s;

}

/* ==========================
   Left Side
========================== */

.left-panel{

    position:relative;

    z-index:10;

    color:#fff;

    min-height:100vh;

    padding:90px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.brand-area{

    max-width:420px;

}

.brand-icon{

    width:72px;

    height:72px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    font-size:28px;

    margin-bottom:30px;

}

.brand-area h1{

    font-size:52px;

    font-weight:800;

    line-height:1.1;

}

.brand-area p{

    margin-top:15px;

    font-size:18px;

    opacity:.85;

}

/* ==========================
Hero
========================== */

.hero-content{

    max-width:600px;

}

.badge-text{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-content h2{

    font-size:24px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    opacity:.82;
    line-height:1.8;
}
/* ==========================
Feature Cards
========================== */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:540px;
}
.feature-card{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:22px;
    padding:28px;
    transition:.35s;
}

.feature-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.16);

border-color:rgba(255,107,26,.35);

}

.feature-card i{

    font-size:34px;

    margin-bottom:20px;

    display:block;

}

.feature-card span{

    font-size:18px;

    font-weight:700;

}












/* ==========================================
   RIGHT LOGIN SIDE
========================================== */

.login-side{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:20;
    padding:40px;
}

.login-card{

    width:100%;
    max-width:520px;

    padding:55px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(4,18,39,.45);

}

.login-logo{

    margin-bottom:30px;

}

.logo-circle{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

   background:#ffffff;

    color:#FF6B1A;

    font-size:34px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.login-card h3{

    color:#fff;

    font-size:38px;

    font-weight:800;

    margin-bottom:10px;

}

.login-card p{

    color:rgba(255,255,255,.80);

    margin-bottom:35px;

}


/* ==========================================
   INPUTS
========================================== */

.input-group-custom{

    position:relative;

    margin-bottom:22px;

}

.input-group-custom i{

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    color:#FF6B1A;

    font-size:18px;

    z-index:10;

}

.input-group-custom input{

    height:60px;

    padding-left:55px;

    border-radius:16px;

    border:none;

    background:#ffffff;

    transition:.35s;

}

.input-group-custom input:focus{

    transform:translateY(-2px);

    box-shadow:

    0 10px 30px rgba(255,107,26,.25);

}

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.login-options label{

    color:#fff;

    font-size:15px;

}

.login-options a{

    color:#fff;

    font-weight:600;

}


/* ==========================================
   LOGIN BUTTON
========================================== */

.login-btn{

    height:60px;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
#FF6B1A,
#FF8A3D);

    font-size:18px;

    font-weight:700;

    border:none;

    transition:.35s;

}

.login-btn i{

    margin-left:12px;

    transition:.35s;

}

.login-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 45px rgba(255,107,26,.35);

}

.login-btn:hover i{

    transform:translateX(6px);

}

.version{

    text-align:center;

    margin-top:30px;

    color:rgba(255,255,255,.65);

    font-size:14px;

}

/* ==========================================
   ANIMATION
========================================== */

@keyframes float{

0%{

transform:
translateY(0px);

}

50%{

transform:
translateY(-35px);

}

100%{

transform:
translateY(0px);

}

}

::selection{

    background:#FF6B1A;

    color:#fff;

}

.brand-area img {
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
}