* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 15% 15%, rgba(41,168,114,0.18), transparent 380px), radial-gradient(circle at 85% 75%, rgba(41,168,114,0.12), transparent 400px), linear-gradient(145deg, #050A12, #0A0F1A, #111827);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: white;
    padding: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-page {
    width: min(1120px, 100%);
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 420px);
    gap: 20px;
    align-items: stretch;
}

.login-side-panel,
.login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-side-panel {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.login-side-badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(41,168,114,0.08);
    border: 1px solid rgba(41,168,114,0.2);
    color: #8fe4ba;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Sora', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.login-side-title {
    font-size: clamp(34px, 4vw, 52px);
    font-family: 'Sora', 'Inter', sans-serif;
    line-height: 1.02;
    letter-spacing: -2px;
    color: #f3f8fd;
}

.login-side-copy {
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.7;
}

.login-side-points {
    display: grid;
    gap: 14px;
}

.login-side-points div {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(5, 10, 18, 0.4);
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-side-points div:hover {
    border-color: rgba(41,168,114,0.3);
}

.login-side-points strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.login-side-points span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: #90a6bb;
}

.login-card {
    padding: 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-brand {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Sora', 'Inter', sans-serif;
    letter-spacing: -1.8px;
    margin-bottom: 10px;
    color: #fff;
}

.auth-brand span {
    color: #29A872;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input {
    background: rgba(5, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', -apple-system, sans-serif;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus {
    border-color: rgba(41,168,114,0.5);
    background: rgba(5, 10, 18, 0.8);
    box-shadow: 0 0 0 3px rgba(41, 168, 114, 0.12);
}

input::placeholder {
    color: #64748b;
}

.btn-submit {
    background: linear-gradient(135deg, #29A872, #6ED4A7);
    color: #07180e;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, sans-serif;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(41, 168, 114, 0.3), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 168, 114, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.validation-summary-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    list-style: none;
    text-align: left;
}

.links {
    margin-top: 25px;
    font-size: 13px;
}

.links-secondary {
    margin-top: 8px;
}

.links a {
    color: #6ED4A7;
    text-decoration: none;
    font-weight: 600;
}

.links a:hover {
    text-decoration: underline;
}

@media (max-width: 920px) {
    .login-page {
        grid-template-columns: 1fr;
    }

    .login-side-panel {
        display: none;
    }
}
