﻿/* ==========================================
   GreenOps — Modern Premium UI (2025)
   Fully Responsive, Glass UI + Hero Layout
========================================== */

:root {
    --pine: #0D6B4D;
    --sapphire: #0A3D62;
    --lime: #A3E635;
    --navy: #0B1620;
    --mint: #E5F4EE;
    --muted: #9FB1BE;
    --ink: #1F2937;
    --radius: 18px;
    --glass: rgba(255, 255, 255, .08);
    --shadow: rgba(0,0,0,0.45);
}

body.go-login {
    margin: 0;
    background: var(--navy) var(--bg-url) center/cover no-repeat fixed;
    font-family: "Sora", sans-serif;
    color: var(--mint);
}

/* ==========================================
   WRAPPER LAYOUT
========================================== */
.go-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0;
    background: linear-gradient(135deg, rgba(13,107,77,.25), rgba(10,61,98,.50));
}

/* Left hero */
.go-left {
    height: 100%;
    padding: 40px 60px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, rgba(13,107,77,.6), rgba(10,61,98,.9));
    border-right: 1px solid rgba(255,255,255,.08);
}

.go-left-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px;
}

.go-left-text {
    font-size: 16px;
    max-width: 350px;
    color: var(--muted);
}

/* MOBILE: hide left section */
@media (max-width: 900px) {
    .go-wrapper {
        grid-template-columns: 1fr;
    }
    .go-left {
        display: none;
    }
}

/* ==========================================
   LOGIN PANEL
========================================== */
.go-panel {
    width: 100%;
    max-width: 360px;
    margin: auto;
    margin-top:1.9%;
    background: rgba(11,22,32,.70);
    border: 1px solid rgba(163,230,53,.18);
    border-radius: var(--radius);
    padding: 6px 54px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px var(--shadow);
    animation: fadeIn .8s ease;
}

@media (max-width: 500px) {
    .go-panel {
        padding: 26px 20px;
        margin: 20px;
    }
}

/* ==========================================
   LOGO + TITLES
========================================== */
.go-logo {
    width: 220px;
    margin: 0 auto -30px;
    display: block;
}


.go-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 20px;
}

.go-title {
    text-align: center;
    font-size: 30px;
    margin: 0 0 8px;
}


/* ==========================================
   INPUT FIELDS
========================================== */
.go-field { margin-bottom: 16px; }

.go-label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

.go-input {
    width: 100%;

    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    font-size: 15px;
    color: #fff;
    transition: 0.25s;
}

.go-input:focus {
    border-color: var(--lime);
    background: rgba(255,255,255,.10);
    box-shadow: 0 0 0 4px rgba(163,230,53,.22);
}

/* ==========================================
   ROW
========================================== */
.go-row {
    display: flex;
    justify-content: space-between;
    margin: 4px 0 16px;
}

@media (max-width: 450px) {
    .go-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

.go-remember {
    display: flex;
    gap: 7px;
    font-size: 13px;
}

.go-link {
    color: var(--mint);
    font-size: 13px;
}
.go-link:hover { text-decoration: underline; }

/* ==========================================
   BUTTON
========================================== */
.go-button {
    width: 100%;
    height: 50px;
    background: var(--pine);
    color: #fff;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(13,107,77,.35);
    transition: 0.2s;
}

.go-button:hover { filter: brightness(.95); }

.go-button:active { transform: translateY(1px); }

/* ==========================================
   ALERTS
========================================== */
.go-val-summary,
.go-alert {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.go-val-summary {
    color: var(--error);
    background: rgba(220,38,38,.10);
    border: 1px solid rgba(220,38,38,.4);
}

/* ==========================================
   FOOTER
========================================== */
.go-footer {
    text-align: center;
    color: var(--muted);
    margin-top: 18px;
}

/* ==========================================
   ANIMATION
========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
