﻿:root {
    --earth-green: #2d5a27;
    --soft-cream: #f9f6f0;
    --ink: #1a1a1a;
    --accent-yellow: #f4d03f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--soft-cream);
    font-family: 'DM Sans', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Organic Shape */
.organic-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #e9e2d5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 40%;
    z-index: -1;
    animation: morph 10s linear infinite alternate;
}

@keyframes morph {
    to { border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%; }
}

.login-card {
    background: white;
    padding: 50px 40px;
    width: 400px;
    border: 3px solid var(--ink); /* Bold Outline */
    box-shadow: 12px 12px 0px var(--earth-green); /* Hard 3D Shadow */
    position: relative;
    border-radius: 2px; /* Intentionally sharp for Brutalist look */
}

/* Logo Placement */
.logo-circle {
    position: absolute;
    top: -40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--ink);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 0px var(--accent-yellow);
}

.main-logo { width: 70%; height: auto; }

/* Typography */
h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--earth-green);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Inputs */
.input-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-field label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.input-field input {
    padding: 12px;
    border: 2px solid var(--ink);
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
}

.input-field input:focus {
    background: var(--soft-cream);
    box-shadow: 4px 4px 0px var(--accent-yellow);
}

/* Hard 3D Button */
.brutalist-btn {
    width: 100%;
    padding: 15px;
    background: var(--earth-green);
    color: white;
    border: 2px solid var(--ink);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--ink);
    margin-top: 10px;
    transition: 0.1s;
}

.brutalist-btn:active {
    box-shadow: 0px 0px 0px var(--ink);
    transform: translate(4px, 4px);
}

.form-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.form-meta a { color: var(--ink); font-weight: 700; }
.signup-text { margin-top: 25px; text-align: center; font-size: 0.9rem; }
.signup-text a { color: var(--earth-green); font-weight: 700; text-decoration: underline; }