<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #2193b0;
    --primary-light: #6dd5ed;
    --secondary: #2c3e50;
    --text-color: #333;
    --text-light: rgba(255, 255, 255, 0.92);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    color: var(--text-color);
    background: var(--primary);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background effects */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    opacity: 0.4;
    z-index: -2;
    pointer-events: none;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    z-index: -3;
    pointer-events: none;
}

/* Floating shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Custom cursor */
.cursor, .cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.1s;
}

.cursor {
    background: rgba(255, 255, 255, 0.3);
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(2.5);
    transition: transform 0.3s, background 0.3s;
}

.cursor.active {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(3.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Split container layout */
.split-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    min-height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    animation: containerAppear 0.6s ease-out forwards;
}

@keyframes containerAppear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo side */
.logo-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(33, 147, 176, 0.9) 0%, rgba(109, 213, 237, 0.9) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.logo-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    opacity: 0.2;
    z-index: 0;
}

.big-logo {
    width: 220px;
    height: 220px;
    background-image: url("mylogo.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: logoAppear 0.8s 0.3s both;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s 0.5s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 80%;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s 0.7s forwards;
    opacity: 0;
}

/* Register styles */
.register-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow-y: auto;
}

.register-card {
    width: 100%;
    max-width: 450px;
    animation: cardAppear 0.6s ease-out forwards;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

h1 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 10px;
    animation: fadeIn 0.8s 0.2s forwards;
    opacity: 0;
}

.subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 0.95rem;
    animation: fadeIn 0.8s 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-form {
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
    animation: fadeIn 0.8s 0.4s forwards;
    opacity: 0;
}

.input-group:nth-child(2) {
    animation-delay: 0.45s;
}

.input-group:nth-child(3) {
    animation-delay: 0.5s;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeIn 0.8s 0.55s forwards;
    opacity: 0;
}

.input-row .input-group {
    flex: 1;
    margin-bottom: 0;
    opacity: 1;
    animation: none;
}

label {
    display: block;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #999;
    transition: var(--transition);
}

.input-with-icon input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid rgba(108, 213, 237, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-with-icon input:focus {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.1);
}

.input-with-icon input:focus + i {
    color: var(--primary);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary);
}

.terms {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    animation: fadeIn 0.8s 0.6s forwards;
    opacity: 0;
}

.terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
}

.terms label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.terms label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.terms label a:hover {
    text-decoration: underline;
}

.register-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.2);
    animation: fadeIn 0.8s 0.7s forwards;
    opacity: 0;
}

.register-btn i {
    transition: transform 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 147, 176, 0.3);
}

.register-btn:hover i {
    transform: translateX(5px);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    animation: fadeIn 0.8s 0.8s forwards;
    opacity: 0;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    padding: 0 15px;
    color: #777;
    font-size: 0.9rem;
}

.social-register {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeIn 0.8s 0.9s forwards;
    opacity: 0;
}

.social-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-btn i {
    font-size: 1rem;
}

.social-btn.google i {
    color: #DB4437;
}

.social-btn.github i {
    color: #333;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.login-link {
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    margin-top: 10px;
    animation: fadeIn 0.8s 1s forwards;
    opacity: 0;
}

.login-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.login-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        max-width: 500px;
    }
    
    .logo-side {
        padding: 40px 20px;
    }
    
    .big-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .logo-title {
        font-size: 2.5rem;
    }
    
    .register-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .split-container {
        width: 95%;
    }
    
    .logo-side {
        padding: 30px 15px;
    }
    
    .big-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 0.9rem;
    }
    
    .register-container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .input-with-icon input {
        padding: 12px 15px 12px 40px;
    }
    
    .terms {
        align-items: flex-start;
    }
    
    .terms input[type="checkbox"] {
        margin-top: 4px;
    }
    
    .social-btn {
        padding: 10px;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
}
</pre></body></html>