
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
        --primary: #4361ee;
        --primary-dark: #3a56d4;
        --secondary: #7209b7;
        --accent: #f72585;
        --light: #f8f9fa;
        --dark: #212529;
        --gray: #6c757d;
        --success: #4cc9f0;
        --shadow: rgba(0, 0, 0, 0.1);
        --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    body {
        background-color: #f5f7ff;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-image:
            radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 20%),
            radial-gradient(circle at 90% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 20%);
    }

    .container {
        display: flex;
        max-width: 1200px;
        width: 100%;
        background-color: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px var(--shadow);
        min-height: 700px;
    }

    .left-panel {
        flex: 1;
        background: var(--gradient);
        color: white;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .left-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        z-index: 1;
    }

    .logo i {
        margin-right: 10px;
        font-size: 28px;
    }

    .panel-content {
        z-index: 1;
    }

    .left-panel h1 {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .left-panel p {
        font-size: 18px;
        opacity: 0.9;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .features {
        list-style: none;
        margin-top: 30px;
    }

    .features li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    .features i {
        margin-right: 12px;
        background-color: rgba(255, 255, 255, 0.2);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .exam-stats {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        z-index: 1;
    }

    .stat {
        text-align: center;
        flex: 1;
    }

    .stat-value {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 14px;
        opacity: 0.8;
    }

    .right-panel {
        flex: 1;
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .form-header h2 {
        font-size: 32px;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .form-header p {
        color: var(--gray);
        font-size: 16px;
    }

    .form-container {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .input-group {
        margin-bottom: 25px;
        position: relative;
    }

    .input-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark);
        font-size: 15px;
    }

    .input-icon {
        position: absolute;
        left: 15px;
        top: 40px;
        color: var(--gray);
        font-size: 18px;
    }

    .input-group input {
        width: 100%;
        padding: 16px 16px 16px 50px;
        border: 2px solid #e1e5ee;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s;
        background-color: #f9fafc;
    }

    .input-group input:focus {
        outline: none;
        border-color: var(--primary);
        background-color: white;
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }

    .form-note {
        background-color: #f0f7ff;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 30px;
        font-size: 14px;
        color: var(--dark);
        border-left: 4px solid var(--primary);
    }

    .form-note i {
        color: var(--primary);
        margin-right: 8px;
    }

    .submit-btn {
        background: var(--gradient);
        color: white;
        border: none;
        padding: 18px;
        width: 100%;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .submit-btn i {
        margin-left: 10px;
        transition: transform 0.3s;
    }

    .submit-btn:hover i {
        transform: translateX(5px);
    }

    .terms {
        text-align: center;
        margin-top: 25px;
        font-size: 14px;
        color: var(--gray);
    }

    .terms a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    .terms a:hover {
        text-decoration: underline;
    }

    @media (max-width: 992px) {
        .container {
            flex-direction: column;
            max-width: 600px;
        }

        .left-panel {
            padding: 40px 30px;
        }

        .right-panel {
            padding: 40px 30px;
        }

        .exam-stats {
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .left-panel h1 {
            font-size: 28px;
        }

        .form-header h2 {
            font-size: 26px;
        }

        .exam-stats {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* Animation for form elements */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-container>* {
        animation: fadeIn 0.5s ease-out forwards;
    }

    .input-group:nth-child(1) {
        animation-delay: 0.1s;
    }

    .input-group:nth-child(2) {
        animation-delay: 0.2s;
    }

    .form-note {
        animation-delay: 0.3s;
    }

    .submit-btn {
        animation-delay: 0.4s;
    }

    .terms {
        animation-delay: 0.5s;
    }
 