/* =========================
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

:root {

    --primary: #306020;

    --bg-light: #f5f7fb;

    --card-bg: #ffffff;

    --radius-xl: 40px;

    --radius-lg: 20px;

    --shadow-soft:
        0 20px 60px rgba(0,0,0,0.08);
}

/* =========================
   BODY
========================= */

.login-page-body {

    margin: 0;
    padding: 0;

    background: var(--bg-light);

    font-family: Arial, sans-serif;

    overflow-x: hidden;
}

/* =========================
   CENTER WRAPPER
========================= */

.login-page {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px 20px;

    position: relative;
}

/* =========================
   CONTAINER
========================= */

.login-container {

    width: 100%;
    max-width: 500px;

    position: relative;
}

/* =========================
   CARD
========================= */

.login-card {

    position: relative;

    background: var(--card-bg);

    border-radius: var(--radius-xl);

    padding: 70px 50px;

    box-shadow: var(--shadow-soft);

    overflow: hidden;
}

/* =========================
   DECORATION CIRCLES
========================= */

.login-circle {

    position: absolute;

    border-radius: 50%;

    background: var(--primary);

    filter: blur(20px);

    opacity: 0.95;
}

.login-circle-top {

    width: 180px;
    height: 180px;

    top: -70px;
    left: -20px;
}

.login-circle-bottom {

    width: 220px;
    height: 220px;

    bottom: -100px;
    right: -50px;
}

/* =========================
   TITLE
========================= */

.login-title {

    text-align: center;

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 50px;

    color: #222;

    position: relative;

    z-index: 2;
}

/* =========================
   INPUTS
========================= */

.login-card input {

    width: 100%;

    height: 65px;

    border: none;

    border-radius: var(--radius-lg);

    background: #fff;

    text-align: center;

    font-size: 18px;

    margin-bottom: 20px;

    outline: none;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.04);

    position: relative;

    z-index: 2;
}

/* =========================
   BUTTON
========================= */

.login-card button {

    width: 100%;

    height: 60px;

    border: none;

    border-radius: var(--radius-lg);

    background: #306020;

    font-size: 22px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;

    position: relative;

    z-index: 2;
}

.login-card button:hover {

    transform: scale(1.02);

    background: #D1E7C4 !important;

    color: #1f2937 !important;
}

/* =========================
   LINKS
========================= */

.login-card a {

    text-decoration: none;
}

/* =========================
   ALERTS
========================= */

.alert {

    border-radius: 16px;
}

.login-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.public-map-link {
    position: fixed;
    top: 20px;
    right: 20px;

    background: #306020;
    color: white;

    padding: 10px 18px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;

    z-index: 9999;
}

.public-map-link:hover {
    color: white;
    text-decoration: none;
}
