/*==================================================
            GUVENC LOGIN V2
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:
    radial-gradient(circle at top left,#2b6a3e 0%,transparent 35%),
    radial-gradient(circle at bottom right,#d6b45b 0%,transparent 30%),
    linear-gradient(135deg,#07140d,#10291a,#173d27);

    min-height:100vh;
    overflow-x:hidden;
}

/*=============================
        PAGE
=============================*/
.login-page{

    min-height:calc(100vh - 110px);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px 20px;

}

/* Floating Blur */

.login-page::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-120px;
    top:120px;

    border-radius:50%;

    background:#d4af37;

    filter:blur(140px);

    opacity:.12;

}

.login-page::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-180px;
    bottom:-120px;

    border-radius:50%;

    background:#2b8b57;

    filter:blur(180px);

    opacity:.18;

}

/*=============================
        WRAPPER
=============================*/

.login-wrapper{

    width:100%;
    margin:0 auto;

    transform:scale(.75);

    transform-origin:center;
    max-width:1350px;

    display:grid;

    grid-template-columns:520px 1fr;

    overflow:hidden;

    border-radius:35px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 40px 90px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);

    position:relative;

    z-index:5;

}
/*==================================
        LEFT SIDE
==================================*/

.login-left{

    flex:1;

    background:linear-gradient(135deg,#07140d,#12311d);

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

}
.login-left::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,#d4af37 0%,transparent 70%);

    top:-180px;

    left:-180px;

    opacity:.18;

}

/* LOGO */

.brand{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:55px;

}

.brand img{

    width:72px;
    height:72px;

    object-fit:contain;

    filter:drop-shadow(0 12px 25px rgba(0,0,0,.25));

}

.brand h1{

    font-size:34px;

    font-weight:800;

    color:#fff;

    line-height:1;

}

.brand span{

    display:block;

    margin-top:6px;

    color:#d7d7d7;

    font-size:14px;

    letter-spacing:2px;

}

/*==============================*/

.welcome{

    margin-bottom:45px;

}
.welcome p{

    color:#d9d9d9;

    font-size:17px;

    line-height:1.8;

    max-width:520px;

}

.welcome p{

    color:#d9e3dc;

    line-height:1.9;

    font-size:16px;

    max-width:430px;

}

/*==============================
        FORM
==============================*/

.login-left form{

    width:100%;
   

}

.input-group{

    margin-bottom:28px;

}

.input-group label{

    display:block;

    margin-bottom:12px;

    color:#d4af37;

    font-weight:700;

    font-size:14px;

}

.input-group input{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    border-radius:16px;

    padding:0 22px;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.input-group input::placeholder{

    color:#cfd8d2;

}
.input-group input:focus{

    background:#fff;

    box-shadow:

    0 15px 35px rgba(212,175,55,.18),

    inset 0 0 0 2px #d4af37;

}
/*==================================
        PASSWORD
==================================*/

.password-box{

    position:relative;

    width:100%;

    margin-top:12px;

}
.password-box input{

    width:100%;

    height:56px;

    background:#dfe7f7;

    border:none;

    border-radius:15px;

    padding:0 60px 0 22px;

    font-size:16px;

    outline:none;

    transition:.3s;

}


.password-box button{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    width:28px;

    height:28px;

    border:none;

    background:transparent !important;

    padding:0;

    margin:0;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    color:#d4af37;

    box-shadow:none;

}
.password-box button:hover{

    background:#d4af37;
    color:#0d2418;

}

/*==================================
        REMEMBER
==================================*/

.remember{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:8px;
    margin-bottom:30px;

    color:#d9e3dc;

    font-size:14px;

}

.remember label{

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

}

.remember input{

    width:18px;
    height:18px;

    accent-color:#d4af37;

}

.remember a{

    color:#d4af37;

    text-decoration:none;

    transition:.30s;

}

.remember a:hover{

    color:#fff;

}

/*==================================
        LOGIN BUTTON
==================================*/

.login-btn{

    width:100%;
    height:60px;

    border:none;

    border-radius:18px;

    background:linear-gradient(135deg,#d4af37,#c79b18);

    color:#0f2416;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    position:relative;

    overflow:hidden;

}

.login-btn::before{

    content:"";

    position:absolute;

    left:-140px;
    top:0;

    width:120px;
    height:100%;

    background:rgba(255,255,255,.45);

    transform:skewX(-25deg);

    transition:.7s;

}

.login-btn:hover::before{

    left:120%;

}

.login-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 55px rgba(212,175,55,.45);

}

/*==================================
        REGISTER
==================================*/

.register-link{

    margin-top:30px;

    text-align:center;

    color:#d9e3dc;

    font-size:15px;

}

.register-link a{

    color:#d4af37;

    font-weight:700;

    text-decoration:none;

    transition:.30s;

}

.register-link a:hover{

    color:#fff;

}
/*==================================
        RIGHT SIDE
==================================*/

.login-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    padding:60px;

}

/* Cam Kart */
.glass-card{

    position:relative;  

    width:750px;

    height:900px;

    border-radius:38px;

    background:linear-gradient(180deg,#06130d,#0b2015);

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    padding:40px;

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}
.image-placeholder{

    width:110px;

    height:110px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.25);

    margin:25px 0;

    position:relative;

}

.image-placeholder i{

    font-size:42px;

    color:#f2d16a;

}
.image-placeholder::before{

    content:"";

    position:absolute;

    inset:-12px;

    border-radius:50%;

    border:2px solid transparent;

    border-top:2px solid #ffd54a;

    border-right:2px solid #ffd54a;

    animation:rotateGold 3s linear infinite;

    box-shadow:0 0 20px #ffd54a;

}
@keyframes rotateGold{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}
.glass-card::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    background:conic-gradient(

        transparent 0deg,
        transparent 210deg,
        #d4af37 240deg,
        #fff4b0 270deg,
        #d4af37 300deg,
        transparent 330deg

    );

    animation:spinLight 5s linear infinite;

    filter:blur(18px);

    opacity:.2;

}
.glass-card::after{

    content:"";

    position:absolute;

    inset:5px;

    border-radius:34px;

    background:linear-gradient(180deg,#07150e,#102719);

    z-index:-1;

}
@keyframes spinLight{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}
.light-orbit{

    position:absolute;

    inset:-20px;

    border-radius:45px;

    pointer-events:none;

    animation:rotateOrbit 14s linear infinite;

}
.light-orbit span{

    position:absolute;

    width:14px;

    height:14px;

    border-radius:50%;

    background:#ffd54a;

    box-shadow:
        0 0 10px #ffd54a,
        0 0 25px #ffd54a,
        0 0 45px #ffd54a,
        0 0 70px #ffd54a;

}
.light-orbit span:nth-child(1){

    top:0;
    left:50%;

}

.light-orbit span:nth-child(2){

    top:50%;
    right:0;

}

.light-orbit span:nth-child(3){

    bottom:0;
    left:50%;

}

.light-orbit span:nth-child(4){

    top:50%;
    left:0;

}
.light-orbit span:nth-child(1){

    top:0;
    left:50%;

}

.light-orbit span:nth-child(2){

    top:50%;
    right:0;

}

.light-orbit span:nth-child(3){

    bottom:0;
    left:50%;

}

.light-orbit span:nth-child(4){

    top:50%;
    left:0;

}
/* PREMIUM BADGE */

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(212,175,55,.18);

    color:#f2d16a;

    font-weight:700;

    margin-bottom:25px;

    border:1px solid rgba(212,175,55,.35);

}

/* ÜRÜN RESMİ */
.product-image{

    display:flex;

    justify-content:center;

    margin:25px 0 35px;

}

.product-image img{

    width:300px;

    max-width:100%;

    filter:drop-shadow(0 35px 45px rgba(0,0,0,.35));

    transition:.4s;

}

.glass-card:hover .product-image img{

    transform:translateY(-8px) scale(1.05);

}
.glass-card:hover img{

    transform:

    scale(1.08)

    rotate(-3deg);

}

/* BAŞLIK */

.glass-card h2{

    font-size:48px;

    font-weight:900;

    color:#fff;

    text-align:center;

    margin-top:35px;

    line-height:1.2;
    

}

/* AÇIKLAMA */

.glass-card p{

    max-width:360px;

    text-align:center;

    color:#d8e6db;

    line-height:1.8;

    margin-top:18px;

    margin-bottom:35px;

}
.premium-features{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-top:30px;
    margin-bottom:35px;

}
.feature-box{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    color:#fff;

}
.feature-box i{

    color:#d4af37;

    width:26px;

    font-size:18px;

}
/* İSTATİSTİKLER */

.stats{

    margin-top:auto;

    width:100%;

    display:flex;

    justify-content:space-between;

    gap:15px;

    padding-top:25px;

}

.stats .stat-item{

    flex:1;

    text-align:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:20px 10px;

}

.stat-item h3{

    color:#d4af37;

    font-size:34px;

    margin-bottom:8px;

}

.stat-item span{

    color:#dfe8df;

    font-size:14px;

}
/*=========================
      FLOATING CIRCLES
=========================*/

.circle{

    position:absolute;

    border-radius:50%;

    filter:blur(8px);

    animation:circleMove 8s infinite ease-in-out;

}

.circle.one{

    width:170px;
    height:170px;

    background:#d4af37;

    top:70px;
    left:60px;

    opacity:.15;

}

.circle.two{

    width:230px;
    height:230px;

    background:#2f8b59;

    bottom:70px;
    right:40px;

    opacity:.20;

    animation-delay:2s;

}

.circle.three{

    width:110px;
    height:110px;

    background:#ffffff;

    top:50%;

    right:140px;

    opacity:.08;

    animation-delay:4s;

}
/*==================================
            ANIMATIONS
==================================*/

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes circleMove{

    0%{
        transform:translateY(0px) scale(1);
    }

    50%{
        transform:translateY(-30px) scale(1.08);
    }

    100%{
        transform:translateY(0px) scale(1);
    }

}

/*==================================
        INPUT HOVER
==================================*/

.input-group input:hover{

    background:rgba(255,255,255,.15);

}

/*==================================
        SELECTION
==================================*/

::selection{

    background:#d4af37;
    color:#0b2014;

}

/*==================================
        SCROLLBAR
==================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#07140d;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;
    border-radius:20px;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1150px){

.login-wrapper{

    grid-template-columns:1fr;

}

.login-right{

    display:none;

}



.welcome h2{

    font-size:34px;

}

}

@media(max-width:768px){

.login-page{

    padding:110px 15px 40px;

}

.login-wrapper{

    border-radius:24px;

}

.brand{

    flex-direction:column;

    text-align:center;

}

.brand h1{

    font-size:28px;

}

.welcome{

    text-align:center;

}

.welcome h2{

    font-size:30px;

}

.welcome p{

    max-width:100%;

}

.remember{

    flex-direction:column;

    gap:15px;

}

.login-btn{

    height:56px;

    font-size:16px;

}

.input-group input{

    height:54px;

}

}

@media(max-width:500px){



.brand img{

    width:60px;

}

.welcome h2{

    font-size:26px;

}

.register-link{

    font-size:14px;

}

}