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

        body {
            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;
            overflow: hidden;
        }

        .card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 24px;
            width: 100%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 5px;
            background: linear-gradient(to bottom, #ffffff, #29A872);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        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;
        }

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

        input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 14px 18px;
            border-radius: 12px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

            input:focus {
                border-color: #29A872;
                background: rgba(255,255,255,0.08);
                box-shadow: 0 0 0 4px rgba(41,168,114,0.15);
            }

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

        .btn-submit {
            background: linear-gradient(135deg, #29A872, #6ED4A7);
            color: #0f1c32;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            font-size: 15px;
            margin-top: 10px;
            transition: all 0.3s;
        }

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

        .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 a {
                color: #6ED4A7;
                text-decoration: none;
                font-weight: 600;
            }

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