/* General */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(180deg,#f6fbf7,#eef4f1);
    color: #1f2d2b;
    -webkit-font-smoothing:antialiased;
}

/* Center wrapper */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-container {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(6, 24, 15, 0.08);
    text-align: center;
}

/* Logo */
.logo { width: 88px; margin: 4px auto 10px; display: block; }

/* Lottie holder */
.lottie-wrap { margin: 6px auto 10px; }

/* Headings & text */
.title {
    margin: 6px 0 12px;
    font-size: 20px;
    color: #0b3b2a;
}
.intro {
    font-size: 14px;
    color: #2e403b;
    line-height: 1.5;
    margin: 0 0 18px;
}

/* Buttons */
.actions { display:flex; gap:12px; justify-content:center; align-items:center; flex-wrap:wrap; margin-bottom:14px; }
.btn {
    background: #007a44;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,122,68,0.12);
    transition: transform .08s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,122,68,0.14); }
.secondary { color: #007a44; text-decoration: none; font-size: 14px; padding: 8px; }

/* Footer */
.footer-text { margin-top: 14px; font-size: 13px; color:#6c7a75; }
.footer-text a { color:#007a44; text-decoration:none; }

/* Responsive */
@media (max-width:420px){
    .login-container { padding:18px; border-radius:10px; }
    .btn { width: 100%; }
    .actions { flex-direction: column; gap:8px; }
}