/* ================= BASE ================= */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f9f9f9;
}

.login-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ================= LEFT SIDE ================= */
.login-left {
    flex: 1;
    background-color: #18635c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.login-left h1 {
    font-size: 64px;
    font-weight: 700;
    margin-top: 10px;
}

.login-left h3 {
    font-weight: 600;
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.login-left span {
    display: block;
    font-weight: 500;
}

/* ================= RIGHT SIDE ================= */
.login-right {
    flex: 1;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 25px;
}

.login-card img {
    display: block;
    margin: 0 auto 15px;
    width: 170px;
}

.form-control {
    height: 45px;
}

.btn-primary {
    background-color: #18635c;
    border: none;
    height: 45px;
}

.btn-primary:hover {
    background-color: #14524d;
}

.btn-outline-secondary {
    height: 45px;
}

.small-link {
    font-size: 14px;
    color: #0b5999;
}

/* ================= BACK TO HOME ================= */
.btn-back-home {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #18635c;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
    z-index: 1000;
}

.btn-back-home:hover {
    background: #18635c;
    color: #fff;
    transform: translateX(-3px);
}

/* ================= STEPPER (REGISTER ONLY) ================= */

/* ================= STEPPER ================= */
.stepper-box {
    background: rgba(255,255,255,0.12);
    border-left: 4px solid #ffffff;
    padding: 16px;
    margin-bottom: 30px;
    text-align: left;
}

.stepper-box strong {
    color: #ffffff;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
}

.stepper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 36px;
    width: 2px;
    height: calc(100% - 8px);
    background: rgba(255,255,255,0.35);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step.active .step-circle {
    background: #ffffff;
    color: #18635c;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.step-label {
    margin-left: 12px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #e8f5f3;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .login-left {
        display: none;
    }

    .login-wrapper {
        flex-direction: column;
    }

    .login-card {
        margin: 20px;
}
        }