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

body{
    background:#07110c;
    overflow-x:hidden;
}

/* MAIN LAYOUT */
.layout{
    display:flex;
    min-height:900px;
    margin-top:120px;
}

/* =======================
   LEFT HERO SECTION
======================= */
.hero{
    flex:1.2;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:90px;
    color:white;
}

/* DARK GREEN BASE */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,#06130d 40%, #0b2416);
}

/* OLIVE OIL IMAGE LAYER */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:url("https://images.unsplash.com/photo-1604908176997-125f25cc500f") center/cover;
    opacity:0.22;
}

/* GOLD SPLASH LIGHT */
.hero-content{
    position:relative;
    z-index:2;
    max-width:500px;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:radial-gradient(circle,#d4af37,#8a6b12);
    box-shadow:0 0 25px rgba(212,175,55,0.4);
}

.brand h1{
    font-size:52px;
    font-weight:800;
    color:#d4af37;
    line-height:1.1;
}

.slogan{
    margin-top:10px;
    font-size:18px;
    opacity:0.85;
}

.divider{
    width:80px;
    height:3px;
    background:#d4af37;
    margin:25px 0;
    border-radius:10px;
}

.features div{
    margin:12px 0;
    font-size:16px;
    opacity:0.95;
}

/* =======================
   RIGHT FORM AREA
======================= */
.form-area{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f4f5f6;
    position:relative;
}

/* GOLD LIGHT GLOW */
.form-area::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#d4af37 0%, transparent 70%);
    opacity:0.18;
    top:-120px;
    right:-120px;
}

/* CARD */
.card{
    width:440px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(18px);
    border-radius:30px;
    padding:45px;
    box-shadow:0 50px 140px rgba(0,0,0,0.18);
}

/* TOP */
.card-top{
    text-align:center;
}

.leaf{
    width:38px;
    height:38px;
    margin:0 auto 10px auto;
    border-radius:50%;
    background:linear-gradient(135deg,#1b3b24,#d4af37);
}

.card h2{
    font-size:28px;
    font-weight:800;
    color:#1b3b24;
}

.card p{
    font-size:13px;
    color:#666;
    margin-top:5px;
    margin-bottom:20px;
}

/* INPUT FIELD STYLE (IMPORTANT PART) */
.field{
    margin-top:18px;
    position:relative;
}

.field span{
    font-size:12px;
    color:#d4af37;
    position:absolute;
    top:-10px;
    left:12px;
    background:white;
    padding:0 6px;
}

.field input{
    width:100%;
    padding:15px;
    border-radius:14px;
    border:1px solid #ddd;
    outline:none;
    font-size:14px;
    background:#fff;
    transition:0.2s;
}

.field input:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 3px rgba(212,175,55,0.15);
}

/* BUTTON */
button{
    width:100%;
    margin-top:25px;
    padding:15px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#1b3b24,#0f2416);
    color:white;
    font-weight:700;
    cursor:pointer;
    transition:0.25s;
}

button:hover{
    background:linear-gradient(135deg,#d4af37,#b8860b);
    transform:translateY(-2px);
}

/* BOTTOM */
.bottom{
    text-align:center;
    margin-top:15px;
    font-size:13px;
    color:#666;
}

.bottom a{
    color:#d4af37;
    font-weight:700;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
    .hero{
        display:none;
    }

    .card{
        width:90%;
    }
}
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* navbar üstte kalmasın diye */
.layout{
    margin-top:90px;
}

/* form taşmasın */
.form-area{
    padding:40px 20px;
}
#notify{

    position:fixed;
    top:25px;
    right:25px;

    width:360px;

    background:#fff;

    border-radius:18px;

    display:flex;
    gap:15px;

    padding:15px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

    z-index:999999;

    transform:translateX(420px);

    transition:.45s;

    border-left:6px solid #1f7a3f;

}

#notify.show{

    transform:translateX(0);

}

.notify-image img{

    width:65px;
    height:65px;

    object-fit:cover;

    border-radius:12px;

}

.notify-text h4{

    margin:0;
    color:#1f7a3f;
    font-size:17px;

}

.notify-text p{

    margin-top:6px;
    color:#555;
    font-size:14px;

}