* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    overflow: hidden;
}

/* LAYOUT */
.container {
    display: flex;
    height: 100vh;
}

/* LEFT IMAGE */
.left {
    flex: 1;
    background: url('/assets/images/bg.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.2), #000);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.bottom span {
    font-family: 'Orbitron';
    font-size: 20px;
    color: white;
}

.bottom p {
    font-size: 13px;
    color: #aaa;
}

/* RIGHT PANEL */
.right {
    width: 420px;
    background: rgba(15,15,15,0.75);
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.05);
}

/* CARD */
.login-card {
    width: 85%;
    color: white;
    animation: fadeIn 1s ease;
}

/* LOGO */
.logo {
    font-family: 'Orbitron';
    font-size: 22px;
    margin-bottom: 25px;
}

.logo span {
    color: #ff2a2a;
}

/* TITLE */
h1 {
    font-size: 28px;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #ff2a2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 30px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    font-size: 12px;
    color: #777;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #ff2a2a;
    box-shadow: 0 0 15px rgba(255,0,0,0.25);
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group input:valid + label {
    top: -8px;
    font-size: 10px;
    color: #ff2a2a;
}

/* EXTRA */
.extra {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.extra a {
    color: #ff2a2a;
}

/* BUTTONS */
.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff2a2a, #7a0000);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,0,0,0.3);
}

.register-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background: rgba(255,0,0,0.1);
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BUTTON ROW */
.button-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* BACK BUTTON */
.back-btn {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255,0,0,0.5);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.back-btn:hover {
    background: rgba(255,0,0,0.1);
}

/* CONTINUE BUTTON (login-btn zaten vardı ama biraz güçlendirelim) */
.login-btn {
    flex: 1;
}

.req {
    color: #ffb300;
    font-size: 11px;
}