#password-addon,
#password_confirmation-addon {
    padding: 10px 15px !important;
}

.login-dot-player {
    width: 500px;
    height: 500px;
}

.img-height {
    height: 75px;
}

@media (max-width: 768px) {
    .img-height {
        height: 50px;
    }

    .login-dot-player {
        width: 250px;
        height: 250px;
    }
}

.footer {
    left: 0px;
}

:root {
    /* Base brand: #2a8a40 (green) */
    --g-900: #0f3d1d;
    --g-800: #145026;
    --g-700: #1b6b32;
    --g-600: #237c3a;
    --g-500: #2a8a40;
    /* primary */
    --g-400: #42a75a;
    --g-300: #6fc786;

    --bg: #f3fbf5;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e5e7eb;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);

    --r-lg: 22px;
    --r-md: 14px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
        Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(
            1000px 600px at 10% 10%,
            rgba(42, 138, 64, 0.18),
            transparent 60%
        ),
        radial-gradient(
            900px 500px at 85% 20%,
            rgba(66, 167, 90, 0.18),
            transparent 55%
        ),
        linear-gradient(180deg, #f6fdf8 0%, var(--bg) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.shell {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 22px;
    align-items: stretch;
}

.hero .ud {
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Left card (form) */
.card {
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
    font-size: 12px;
}

.title {
    margin: 10px 0 6px;
    font-size: 22px;
    letter-spacing: -0.2px;
    color: #0f172a;
    font-weight: 700;
}

.subtitle {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 8px 0 16px;
}

.form-check-input:checked {
    background-color: var(--g-500);
    border-color: var(--g-500);
}

.check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--g-500);
    user-select: none;
}

.check input {
    accent-color: var(--g-500);
}

.link {
    font-size: 12px;
    color: var(--g-700);
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    background: linear-gradient(180deg, var(--g-500), var(--g-700));
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(42, 138, 64, 0.28);
    transition: transform 0.08s ease, filter 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn:hover {
    filter: brightness(1.02);
}

/* Right hero */
.hero {
    border-radius: var(--r-lg);
    background: radial-gradient(
            900px 500px at 15% 15%,
            rgba(255, 255, 255, 0.22),
            transparent 55%
        ),
        radial-gradient(
            700px 400px at 85% 70%,
            rgba(255, 255, 255, 0.18),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            var(--g-500) 0%,
            var(--g-700) 55%,
            var(--g-800) 100%
        );
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.hero h2 {
    margin: 0;
    font-size: 36px;
    color: white;
    letter-spacing: -0.6px;
    line-height: 1.12;
    font-weight: 700;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: fit-content;
    margin-top: 16px;
    backdrop-filter: blur(6px);
}

.panel {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 14px 14px 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.panel h3 {
    margin: 0 0 10px;
    font-size: 12px;
    color: #0f172a;
    letter-spacing: 0.2px;
}

/* decorative circles */
.ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    top: -70px;
    right: -70px;
}

.ring.two {
    width: 340px;
    height: 340px;
    top: auto;
    bottom: -140px;
    left: -140px;
    border-color: rgba(255, 255, 255, 0.14);
}

/* Responsive */
@media (max-width: 980px) {
    .shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 420px;
    }
}

@media (max-width: 520px) {
    .card {
        padding: 22px;
    }

    .hero {
        padding: 24px;
    }

    .hero h2 {
        font-size: 30px;
    }
}
