* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at center,#0f172a,#020617 65%);
    color:#e5e7eb;
}


.login-wrapper {
    display: flex;
    width: 900px;
    max-width: 95%;
    background: #020617;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

/* SOL TANITIM */
.login-left {
    flex: 1;
    background: linear-gradient(160deg, #16a34a, #020617);
    padding: 60px 45px;
    color: #ecfdf5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h1 {
    font-size: 38px;
    font-weight: 800;
}

.login-left p {
    margin-top: 15px;
    color: #bbf7d0;
    line-height: 1.6;
}

.feature {
    margin-top: 25px;
    font-size: 16px;
}

/* SAĞ FORM */
.login-right {
    flex: 1;
    padding: 60px 50px;
    background: #020617;
    color: #e5e7eb;
}

.login-right h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.login-right span {
    color: #94a3b8;
    font-size: 14px;
}

.input-box {
    margin-top: 22px;
    position: relative;
}

.input-box input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: #020617;
    color: #e5e7eb;
    font-size: 15px;
    outline: none;
}

.input-box input:focus {
    border-color: #22c55e;
}

.input-box i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #22c55e;
}

.login-btn {
    margin-top: 28px;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 12px;
    background: #22c55e;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: #022c22;
}

.login-btn:hover {
    background: #4ade80;
}

@media(max-width:800px){
    .login-left{display:none}
    .login-right{width:100%}
}
