* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    margin: 0;
    height: 100%;
}

body {
    background: #f6f8fc;
}

/* WRAPPER */
.wrapper {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
}

/* LEFT PANEL */
.left {
    width: 50%;
    padding: 70px 90px;
    background: radial-gradient(circle at top left, #cdeee7, transparent 45%),
                radial-gradient(circle at bottom right, #c9d9f2, transparent 45%),
                linear-gradient(135deg, #f3f8ff, #f7fcfa);
    display: flex;
    align-items: center;
}

.left-content {
    max-width: 520px;
}

.left-content img {
    width: 280px;
    margin-bottom: 25px;
}

.left-content .tagline {
    font-size: 15px;
    font-weight: 600;
    color: #3b7a2a;
    margin-bottom: 40px;
}

.left-content h1 {
    font-size: 26px;
    color: #2f5be7;
    margin-bottom: 16px;
}

.left-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* RIGHT PANEL */
.right {
    width: 50%;
    background: #ffffff;
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -12px 0 35px rgba(0,0,0,0.06);
}

.right-content {
    max-width: 400px;
}

.brand {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.brand img {
    width: 36px;
    margin-right: 10px;
}

.brand span {
    font-size: 18px;
    font-weight: 600;
    color: #0b7285;
}

.right h2 {
    font-size: 26px;
    margin: 6px 0;
    color: #111827;
}

.right .sub {
    font-size: 14px;
    color: #6b7280;
    margin: 15px 0 25px;
}

/* FORM INPUT & SELECT */
form input,
form select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #eef4ff;
    font-size: 14px;
    color: #0f172a;
}

/* Focus state */
form input:focus,
form select:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
}

/* Remove default arrow & add custom arrow */
form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23334155' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
}

/* Optional: disabled option look */
form select option:disabled {
    color: #94a3b8;
}

form button:hover {
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .left {
        display: none;
    }
    .right {
        width: 100%;
        box-shadow: none;
    }
}

.password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
}

.password-wrapper input {
    width: 100%;
    padding: 13px 44px 13px 14px; /* space for eye */
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #eef4ff;
    font-size: 14px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    user-select: none;
    color: #6b7280;
}

.toggle-password:hover {
    color: #2563eb;
}

