* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: #f6f8fc;
}

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

/* LEFT PANEL – 60% (Elegant Biotech Style) */
.left-panel {
    width: 65%;
    background: linear-gradient(
        135deg,
        #e7f1ff 0%,
        #f4fbf9 100%
    );
    padding: 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Soft abstract accent */
.left-panel::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #20c99755, transparent 70%);
    z-index: 0;
}

.left-panel::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0b5ed755, transparent 70%);
    z-index: 0;
}


/* RIGHT PANEL */
.right-panel {
    width: 35%;
    background: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.brand {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.brand img {
    width: 40px;
    margin-right: 10px;
}

.brand span {
    font-weight: 600;
    font-size: 18px;
    color: #0b7285;
}

h2 {
    margin: 10px 0;
    font-size: 24px;
    color: #212529;
}

p.sub {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

/* FORM */
form input {
    width: 80%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-size: 14px;
}

form button {
    width: 80%;
    padding: 12px;
    background: linear-gradient(135deg, #0b7285, #1864ab);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

form button:hover {
    background: #095c6b;
}

.register-box {
    margin-top: 25px;
    text-align: lef;
    font-size: 14px;
}

.register-box a {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #0b7285;
    color: #0b7285;
    text-decoration: none;
    font-weight: 500;
}

.register-box a:hover {
    background: #0b7285;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .left-panel {
        display: none;
    }
    .right-panel {
        width: 100%;
    }
}
