 .sirmax-register-fullpage {
        min-height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        font-family: 'Inter', 'Segoe UI', sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* Geometric Background */
    .sirmax-geometric-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .sirmax-geo-shape {
        position: absolute;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        animation: sirmax-float 8s ease-in-out infinite;
    }

    .sirmax-geo-1 {
        width: 120px;
        height: 120px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }

    .sirmax-geo-2 {
        width: 80px;
        height: 80px;
        bottom: 20%;
        left: 10%;
        animation-delay: 2s;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transform: rotate(45deg);
    }

    .sirmax-geo-3 {
        width: 150px;
        height: 150px;
        top: 50%;
        right: 10%;
        animation-delay: 4s;
        clip-path: circle(50% at 50% 50%);
    }

    .sirmax-geo-4 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        right: 20%;
        animation-delay: 1s;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    }

    .sirmax-geo-5 {
        width: 200px;
        height: 200px;
        top: 20%;
        right: 5%;
        animation-delay: 3s;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        border-radius: 50%;
    }

    @keyframes sirmax-float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-30px) rotate(180deg); 
        }
    }

    /* Main Container */
    .sirmax-register-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        min-height: 100vh;
        position: relative;
        z-index: 1;
    }

    /* Visual Panel */
    .sirmax-visual-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sirmax-visual-content {
        max-width: 500px;
        width: 100%;
        color: white;
    }

    /* Brand Section */
    .sirmax-brand {
        text-align: center;
        margin-bottom: 60px;
    }

    .sirmax-logo-shape {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.5rem;
        transform: rotate(-5deg);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .sirmax-brand h1 {
        margin: 0 0 12px 0;
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #fff, #f1f2f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .sirmax-brand p {
        margin: 0;
        opacity: 0.9;
        font-size: 1.2rem;
        font-weight: 300;
    }

    /* Floating Elements */
    .sirmax-floating-elements {
        position: relative;
        height: 200px;
        margin: 40px 0;
    }

    .sirmax-float-item {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: sirmax-bounce 4s ease-in-out infinite;
    }

    .sirmax-float-1 {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .sirmax-float-2 {
        top: 60%;
        left: 20%;
        animation-delay: 1s;
    }

    .sirmax-float-3 {
        top: 30%;
        right: 15%;
        animation-delay: 2s;
    }

    .sirmax-float-4 {
        bottom: 10%;
        right: 25%;
        animation-delay: 3s;
    }

    @keyframes sirmax-bounce {
        0%, 100% { transform: translateY(0px) scale(1); }
        50% { transform: translateY(-20px) scale(1.1); }
    }

    /* Stats Cards */
    .sirmax-stats-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sirmax-stat-card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease;
    }

    .sirmax-stat-card:hover {
        transform: translateY(-5px);
    }

    .sirmax-stat-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .sirmax-stat-content h3 {
        margin: 0 0 5px 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .sirmax-stat-content p {
        margin: 0;
        opacity: 0.8;
        font-size: 0.85rem;
    }

    /* Form Panel */
    .sirmax-form-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

    .sirmax-form-wrapper {
        max-width: 480px;
        width: 100%;
    }

    .sirmax-form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .sirmax-form-header h2 {
        margin: 0 0 12px 0;
        font-size: 2.2rem;
        font-weight: 700;
        color: #2c3e50;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .sirmax-form-header p {
        margin: 0;
        color: #6c757d;
        font-size: 1.1rem;
    }

    /* Progress Steps */
    .sirmax-progress-steps {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        position: relative;
    }

    .sirmax-progress-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: #e9ecef;
        z-index: 1;
    }

    .sirmax-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
        flex: 1;
    }

    .sirmax-step-number {
        width: 40px;
        height: 40px;
        border: 3px solid #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background: white;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }

    .sirmax-step-active .sirmax-step-number {
        border-color: #667eea;
        background: #667eea;
        color: white;
    }

    .sirmax-step span {
        font-size: 0.85rem;
        font-weight: 500;
        color: #6c757d;
    }

    .sirmax-step-active span {
        color: #667eea;
        font-weight: 600;
    }

    /* Form Steps */
    .sirmax-form-step {
        display: none;
    }

    .sirmax-step-active {
        display: block;
        animation: sirmax-fadeIn 0.5s ease;
    }

    @keyframes sirmax-fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Fixed Floating Labels */
    .sirmax-form-floating {
        position: relative;
        margin-bottom: 25px;
    }

    .sirmax-form-floating input {
        width: 100%;
        padding: 20px 20px 10px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 1rem;
        background: #f8f9fa;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .sirmax-form-floating input:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .sirmax-form-floating input:focus + label,
    .sirmax-form-floating input:not(:placeholder-shown) + label {
        top: 8px;
        transform: none;
        font-size: 0.75rem;
        color: #667eea;
    }

    .sirmax-form-floating input::placeholder {
        color: transparent;
    }

    .sirmax-form-floating input:focus::placeholder {
        color: #6c757d;
    }

    .sirmax-form-floating label {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        color: #6c757d;
        font-weight: 500;
        pointer-events: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        padding: 0 4px;
    }

    /* Make sure the label moves properly when field has content */
    .sirmax-form-floating input:not(:placeholder-shown) + label {
        top: 8px;
        transform: none;
        font-size: 0.75rem;
        color: #667eea;
    }

    .sirmax-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Terms Card */
    .sirmax-terms-card {
        background: #f8f9fa;
        border: 2px solid #e9ecef;
        border-radius: 15px;
        padding: 25px;
        margin: 25px 0;
    }

    .sirmax-terms-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }

    .sirmax-terms-header i {
        color: #667eea;
        font-size: 1.3rem;
    }

    .sirmax-terms-header h4 {
        margin: 0;
        color: #2c3e50;
        font-size: 1.1rem;
    }

    .sirmax-terms-content {
        margin-bottom: 20px;
    }

    .sirmax-terms-content p {
        margin: 0 0 12px 0;
        color: #495057;
        font-weight: 500;
    }

    .sirmax-terms-content ul {
        margin: 0;
        padding-left: 20px;
        color: #6c757d;
    }

    .sirmax-terms-content li {
        margin-bottom: 5px;
    }

    /* Buttons */
    .sirmax-btn {
        padding: 16px 24px;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: inherit;
    }

    .sirmax-btn-block {
        width: 100%;
    }

    .sirmax-btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .sirmax-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .sirmax-btn-ghost {
        background: transparent;
        color: #6c757d;
        border: 2px solid #e9ecef;
    }

    .sirmax-btn-ghost:hover {
        background: #f8f9fa;
        border-color: #667eea;
        color: #667eea;
    }

    .sirmax-form-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .sirmax-form-actions .sirmax-btn {
        flex: 1;
    }

    /* Form Footer */
    .sirmax-form-footer {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid #e9ecef;
        text-align: center;
    }

    .sirmax-form-footer p {
        margin: 0 0 15px 0;
        color: #6c757d;
    }

    .sirmax-login-link {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

    .sirmax-login-link:hover {
        text-decoration: underline;
    }

    .sirmax-student-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #6c757d;
        font-size: 0.9rem;
    }

    .sirmax-student-note i {
        color: #667eea;
    }

    /* Success Page */
    .sirmax-success-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 40px;
        position: relative;
        z-index: 1;
    }

    .sirmax-success-card {
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 60px 40px;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        max-width: 500px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .sirmax-success-graphic {
        position: relative;
        margin-bottom: 30px;
    }

    .sirmax-success-circle {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .sirmax-success-particles {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
    }

    .sirmax-success-particles span {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #27ae60;
        border-radius: 50%;
        animation: sirmax-particles 2s infinite;
    }

    .sirmax-success-particles span:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
    .sirmax-success-particles span:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
    .sirmax-success-particles span:nth-child(3) { bottom: 0; left: 50%; animation-delay: 1s; }
    .sirmax-success-particles span:nth-child(4) { top: 50%; left: 0; animation-delay: 1.5s; }

    @keyframes sirmax-particles {
        0% { transform: scale(0); opacity: 1; }
        100% { transform: scale(3); opacity: 0; }
    }

    .sirmax-success-card h1 {
        margin: 0 0 12px 0;
        font-size: 2.2rem;
        font-weight: 700;
        color: #2c3e50;
    }

    .sirmax-success-card p {
        margin: 0 0 35px 0;
        color: #6c757d;
        font-size: 1.1rem;
    }

    .sirmax-success-actions {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .sirmax-register-container {
            grid-template-columns: 1fr;
        }
        
        .sirmax-visual-panel {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .sirmax-form-panel {
            padding: 25px 20px;
        }
        
        .sirmax-form-row {
            grid-template-columns: 1fr;
        }
        
        .sirmax-form-actions {
            flex-direction: column;
        }
        
        .sirmax-success-actions {
            flex-direction: column;
        }
    }

    /* Field Hints & Errors */
    .sirmax-field-hint {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 5px;
        padding-left: 20px;
    }

    .sirmax-field-error {
        font-size: 0.8rem;
        color: #e74c3c;
        margin-top: 5px;
        padding-left: 20px;
        display: none;
    }

    /* Checkbox */
    .sirmax-checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
        font-weight: normal;
        color: #495057;
        line-height: 1.4;
    }

    .sirmax-checkbox-label input[type="checkbox"] {
        display: none;
    }

    .sirmax-checkmark {
        width: 20px;
        height: 20px;
        border: 2px solid #e9ecef;
        border-radius: 4px;
        position: relative;
        flex-shrink: 0;
        transition: all 0.3s ease;
        background: white;
    }

    .sirmax-checkbox-label input[type="checkbox"]:checked + .sirmax-checkmark {
        background: #667eea;
        border-color: #667eea;
    }

    .sirmax-checkbox-label input[type="checkbox"]:checked + .sirmax-checkmark::after {
        content: '✓';
        position: absolute;
        color: white;
        font-size: 14px;
        font-weight: bold;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .sirmax-checkbox-label a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

    /* Form Messages */
    .sirmax-form-messages {
        padding: 18px 20px;
        border-radius: 12px;
        margin-bottom: 25px;
        display: none;
        font-weight: 500;
    }

    .sirmax-form-messages.sirmax-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .sirmax-form-messages.sirmax-error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }