.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #181A1B 0%, #1a1f2e 50%, #222430 100%);
    position: relative;
    overflow: hidden;
}

.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(99, 178, 229, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.register-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.register-header {
    text-align: center;
    margin-bottom: 1rem;
}

.register-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-btn {
    background: #0d6efd;
    border: none;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    box-shadow: 0 1px 4px rgba(13, 110, 253, 0.1);
}

.register-btn:hover {
    background: #0b5ed7;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.15);
}

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

.register-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.register-footer p {
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
    font-size: 0.85rem;
}

.login-link {
    color: #60a5fa !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #93c5fd !important;
    text-decoration: none;
}

@media (max-width: 480px) {
    .register-container {
        padding: 0.5rem;
    }
    
    .register-card {
        margin: 0.5rem;
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }
    
    .register-title {
        font-size: 1.4rem;
    }
    
    .form-input {
        padding: 0.45rem 0.8rem;
    }
    
    .register-btn {
        padding: 0.45rem 0.7rem;
    }
    
    .register-form {
        gap: 0.8rem;
    }
}