/**
 * Stan360 - Style dla strony logowania
 * Dodaj do style.css motywu WordPress
 */

:root {
    --stan-white: #ffffff;
    --stan-red: #DB403C;
    --stan-green: #6FBC2E;
    --stan-blue: #00B8EE;
    --stan-blue15: rgba(0, 184, 238, .15);
    --stan-darkblue: #24457E;
    --stan-yellow: #FBC90A;
    --stan-yellow15: rgba(251, 201, 10, .15);
}

.stan360-login-page {
    font-family: 'Museo Sans Rounded', 'Nunito', sans-serif;
    background: #fff;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.stan360-login-page::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 380px;
    height: 380px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20 100 L80 40 L80 60 L40 100 L80 140 L80 160 Z' fill='none' stroke='%2300B8EE' stroke-width='8' opacity='0.15'/%3E%3C/svg%3E");
    z-index: 0;
}

.stan360-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    position: relative;
    z-index: 1;
}

.stan360-main-logo { height: 140px; width: auto; }

.stan360-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stan360-tab {
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-width: 220px;
    background: var(--stan-blue);
    color: white;
    transition: all 0.3s;
}

.stan360-tab--yellow { background: var(--stan-yellow); }
.stan360-tab:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.stan360-tab--active { box-shadow: 0 0 0 3px rgba(0,184,238,0.3); }

.stan360-form-wrapper { max-width: 680px; }
.stan360-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 24px; }
.stan360-field label { font-size: 15px; font-weight: 700; color: var(--stan-darkblue); margin-bottom: 10px; display: block; }
.stan360-input { height: 52px; padding: 0 16px; border: 1px solid #c5c5c5; border-radius: 4px; font-size: 16px; background: #f0f0f0; width: 100%; }
.stan360-input:focus { outline: none; border-color: var(--stan-blue); background: white; box-shadow: 0 0 0 3px var(--stan-blue15); }
.stan360-btn { padding: 16px 50px; font-size: 18px; font-weight: 700; border: none; border-radius: 5px; cursor: pointer; background: var(--stan-darkblue); color: white; min-width: 220px; }
.stan360-btn:hover { background: #1a3460; transform: translateY(-2px); }
.stan360-link { color: var(--stan-darkblue); font-weight: 700; text-decoration: none; }
.stan360-link:hover { text-decoration: underline; }
.stan360-alert { padding: 14px 20px; border-radius: 6px; margin-bottom: 25px; border-left: 4px solid; }
.stan360-alert--error { background: #fef2f2; color: #b91c1c; border-color: var(--stan-red); }
.stan360-alert--success { background: #f0fdf4; color: #15803d; border-color: var(--stan-green); }

.stan360-cta { position: relative; margin-top: 100px; padding: 70px 20px; text-align: center; }
.stan360-cta-bg { position: absolute; inset: 0; background: var(--stan-red); opacity: 0.92; }
.stan360-cta-content { position: relative; z-index: 1; }
.stan360-cta h2 { color: white; font-size: 36px; font-weight: 700; margin-bottom: 35px; }

@media (max-width: 768px) {
    .stan360-form-row { grid-template-columns: 1fr; }
    .stan360-tabs { flex-direction: column; }
    .stan360-tab, .stan360-btn { width: 100%; }
}