@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #fff 0%, #207cca 51%, #2989d8 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .form-container {
            width: 100%;
            max-width: 500px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-header {
            background: linear-gradient(94.59deg, #4251FC 2.13%, #0077C0 93.35%);
            padding: 20px 30px;
            color: white;
            text-align: center;
        }

        .form-header h2 {
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .form-header p {
            font-weight: 300;
            opacity: 0.9;
        }

        .logo-container {
            padding: 20px;
            text-align: center;
            background: #f8f9ff;
        }

        .logo-container img {
            max-width: 220px;
            height: auto;
        }

        .form-body {
            padding: 25px 30px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2d3748;
            font-size: 0.9rem;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #718096;
            font-size: 18px;
        }

        .form-control {
            width: 100%;
            padding: 14px 20px 14px 48px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            color: #2d3748;
        }

        .form-control:focus {
            outline: none;
            border-color: #4251FC;
            box-shadow: 0 0 0 3px rgba(66, 81, 252, 0.1);
            background: white;
        }

        .styled-select {
            position: relative;
        }

        .styled-select select {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            background: #f8fafc;
            color: #2d3748;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .styled-select:after {
            content: '\f078';
            font-family: 'FontAwesome';
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #718096;
            pointer-events: none;
        }

        .styled-select select:focus {
            outline: none;
            border-color: #4251FC;
            box-shadow: 0 0 0 3px rgba(66, 81, 252, 0.1);
            background: white;
        }

        .btn-submit {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(94.59deg, #4251FC 2.13%, #0077C0 93.35%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(66, 81, 252, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(66, 81, 252, 0.4);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        #modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 450px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            animation: modalFade 0.4s ease-out;
        }

        @keyframes modalFade {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .modal-content h3 {
            color: #2d3748;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .modal-content p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .modal-btn {
            padding: 12px 30px;
            background: linear-gradient(94.59deg, #4251FC 2.13%, #0077C0 93.35%);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(66, 81, 252, 0.3);
        }

        .error-message {
            color: #e53e3e;
            font-size: 0.85rem;
            margin-top: 6px;
            display: none;
        }

        .required-star {
            color: #e53e3e;
        }

        @media (max-width: 576px) {
            .form-header {
                padding: 20px;
            }
            
            .form-body {
                padding: 20px;
            }
            
            .logo-container img {
                max-width: 180px;
            }
        }